New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 709815 link

Starred by 5 users

Issue metadata

Status: Started
Owner:
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 2
Type: Bug

Blocked on:
issue 716991

Blocking:
issue 675877



Sign in to add a comment

Restore Capacity(), Data(), and Swap() back to the original names

Project Member Reported by dcheng@chromium.org, Apr 9 2017

Issue description

These were mistakenly left out of the tool's list of method names to ignore. We should change the name back for consistency with STL.
 
+pilgrim@ since this is a continuation of  issue 672902 

FWIW, IsBlacklistedFreeFunctionName blacklists "swap".  OTOH, I see that std::vector also has a |swap| instance method.  It would be great if the standard library documentation would document which things its templates depend on - do we know of such an interop doc that spells whether the naming of |swap| *instance method* is important VS only the naming of |swap| *free function* is important?  I guess similar questions can be asked about |data| and |capacity|.

Also - *how* did we come up with a list of things tackled in issue 662431?
Cc: pilgrim@chromium.org
Actually adding pilgrim@...

Comment 3 by dcheng@chromium.org, Apr 10 2017

Also need to consider things like length() and size(), which we ignored for the rename--but arguably for a few things they should be capitalized in the standard way.

Comment 4 by cblume@google.com, Apr 10 2017

Might want to also consider .get() on the unique_ptr-like classes.

Comment 5 by pwnall@chromium.org, Apr 10 2017

resize() is also a STL vector method that I think should remain lowercase.
I think it is worth noting that //base is somewhat inconsistent here:
- base::flat_set has methods called |size|, |erase|, |swap|, |clear|
- base::MRUCache has methods called |size|, |Erase|, |Swap|, |Clear|
- base::DictionaryValue has methods called |size|, |Remove|, |Swap|, |Clear|
- base::IDMap has methods called |size|, |Remove|, |Clear|

It would be great if whatever agreement we can reach here would also apply to //base.

Comment 7 by dcheng@chromium.org, Apr 10 2017

Status: Started (was: Assigned)
I think the main criteria is if we expect the class to be a drop-in replacement for an STL type. HashCountedSet isn't exactly a drop-in but it's close enough (and other WTF containers like Vector, HashMap are), whereas DictionaryValue/IDMap/MRUCache have fairly different semantics. So we're mainly going to focus on WTF containers here.

There's debate over what to do for smart pointers, but I'm inclined to just leave that particular issue alone (since the smart pointers themselves are fairly distinct from anything in the STL, except maybe RefPtr)

Re: resize(), yes. I don't have an exhaustive list, but things like find(), count(), are also being reverted.
Project Member

Comment 8 by bugdroid1@chromium.org, Apr 11 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/5e94029ae66f4c36265570d712852896f28d3ad2

commit 5e94029ae66f4c36265570d712852896f28d3ad2
Author: Daniel Cheng <dcheng@chromium.org>
Date: Tue Apr 11 02:06:58 2017

Rename TextBufferBase::size() to be Size()

For containers and STL-like things, the convention for the rename was to
keep names that are compatible with STL. TextBufferBase does not fit
this category though, so uppercase Size()

Bug: 709815
Change-Id: I9a502b985867b7d218375a7616bd382604c287d1
Reviewed-on: https://chromium-review.googlesource.com/473568
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#463497}
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/core/editing/VisibleUnits.cpp
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/core/editing/iterators/BackwardsTextBuffer.cpp
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/core/editing/iterators/ForwardsTextBuffer.cpp
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/core/editing/iterators/SearchBuffer.cpp
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/core/editing/iterators/SimplifiedBackwardsTextIteratorTest.cpp
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/core/editing/iterators/TextBufferBase.h
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/core/editing/iterators/TextIteratorTest.cpp
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp
[modify] https://crrev.com/5e94029ae66f4c36265570d712852896f28d3ad2/third_party/WebKit/Source/web/mac/WebSubstringUtil.mm

We used https://docs.google.com/a/chromium.org/spreadsheets/d/1bYpQ9qPRe-E84YbBUf-UiMIq1DSltHbSVsB2BXJ97ZM/edit?usp=sharing as a tracking doc for the methods, identifying where WTF aligned with or diverged from STL. As changes were made we updated the rows; we didn't track the history of the changes in that sheet.

(Also, one row per method doesn't handle overloads, etc; it wasn't a flawless process.)

Cc: slangley@chromium.org
Project Member

Comment 12 by bugdroid1@chromium.org, Apr 18 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/ae8bcd6383310007460f37a92d7629c9802e4044

commit ae8bcd6383310007460f37a92d7629c9802e4044
Author: Daniel Cheng <dcheng@chromium.org>
Date: Tue Apr 18 07:28:56 2017

Revert to lowercase clear() for {List,}Hash{Set,Map,Table} to match STL.

Bug: 709815
Change-Id: I5d8a7c1518dda281adc00f43a189d859df74a1e3
Reviewed-on: https://chromium-review.googlesource.com/479788
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#465169}
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/css/FontFaceCache.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/css/FontFaceSet.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/css/MediaQueryList.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/dom/DocumentOrderedList.h
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/dom/IntersectionObserver.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/events/DOMWindowEventQueue.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/frame/FrameView.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/layout/FloatingObjects.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/layout/ng/ng_fragment_builder.cc
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part.cc
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/modules/canvas2d/HitRegion.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/platform/fonts/FontDataCache.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/platform/heap/HeapTest.cpp
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/platform/wtf/HashMap.h
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/platform/wtf/HashSet.h
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/platform/wtf/HashTable.h
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/platform/wtf/LinkedHashSet.h
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/platform/wtf/ListHashSet.h
[modify] https://crrev.com/ae8bcd6383310007460f37a92d7629c9802e4044/third_party/WebKit/Source/platform/wtf/ListHashSetTest.cpp

Project Member

Comment 13 by bugdroid1@chromium.org, Apr 18 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/7292ea96c65f517a2ed5b2c4355614baa095a160

commit 7292ea96c65f517a2ed5b2c4355614baa095a160
Author: Daniel Cheng <dcheng@chromium.org>
Date: Tue Apr 18 18:45:23 2017

Revert to lowercase swap() for Hash{Set,Map,Table} to match STL.

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2

Bug: 709815
Change-Id: Ic747c182713115d9a17bfdfbd340176a5014d4eb
Reviewed-on: https://chromium-review.googlesource.com/479805
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Yuta Kitamura <yutak@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#465297}
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/bindings/core/v8/DOMWrapperMap.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/bindings/core/v8/V8GlobalValueMap.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/css/resolver/StyleRuleUsageTracker.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/dom/MutationObserverInterestGroup.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/frame/FrameView.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/modules/webdatabase/DatabaseThread.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/LifecycleNotifier.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/heap/HeapTest.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/heap/ThreadState.cpp
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/wtf/HashCountedSet.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/wtf/HashMap.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/wtf/HashSet.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/wtf/HashTable.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/wtf/LinkedHashSet.h
[modify] https://crrev.com/7292ea96c65f517a2ed5b2c4355614baa095a160/third_party/WebKit/Source/platform/wtf/ListHashSet.h

Project Member

Comment 14 by bugdroid1@chromium.org, Apr 19 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d

commit ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d
Author: Daniel Cheng <dcheng@chromium.org>
Date: Wed Apr 19 14:19:26 2017

Revert to lowercase clear() for Vector to match STL.

TBR=rockot@chromium.org

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel

Bug: 709815
Change-Id: Ied88e7feea5170bdb612f55baf4f9d0b1a30bee6
Reviewed-on: https://chromium-review.googlesource.com/478996
Reviewed-by: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#465591}
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/mojo/public/cpp/bindings/array_traits_wtf_vector.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/core/v8/DOMWrapperWorldTest.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyBase.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/core/v8/TraceWrapperMember.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/core/v8/V8PersistentValueVector.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/animation/InertEffect.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/animation/InterpolationEffect.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/animation/SampledEffect.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/clipboard/DataObject.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/CSSSelectorList.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/CSSStyleSheet.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/CSSSyntaxDescriptor.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/ElementRuleCollector.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/FontFaceSet.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/RuleFeature.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/RuleFeatureSetTest.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/StylePropertySet.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/StyleSheetContents.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/parser/MediaQueryParser.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/css/resolver/ViewportStyleResolver.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/CSSSelectorWatchTest.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/DOMStringList.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/DocumentOrderedMap.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/ExecutionContext.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/Fullscreen.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/IntersectionObserver.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/ModuleMapTest.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/MutationObserver.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/ResizeObserver.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/StyleSheetCollection.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/URLSearchParams.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStack.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/custom/CustomElementRegistryTest.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/shadow/ElementShadowV0.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/shadow/ShadowRootRareDataV0.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/dom/shadow/SlotAssignment.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/editing/VisibleUnits.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/editing/commands/InsertParagraphSeparatorCommand.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/editing/iterators/TextIterator.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/events/EventListenerMap.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/events/EventPath.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/events/EventPath.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/events/EventSender.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/events/GenericEventQueue.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/events/InputEvent.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/fileapi/FileList.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/frame/SmartClip.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/frame/SubresourceIntegrity.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/HTMLFormElement.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/PublicURLManager.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/forms/FileInputType.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/forms/FileInputTypeTest.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/forms/FormController.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/forms/RangeInputType.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/imports/HTMLImportsController.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/media/MediaFragmentURIParser.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/AtomicHTMLToken.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/BackgroundHTMLInputStream.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/HTMLToken.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/HTMLTokenizer.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/TextResourceDecoder.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/track/TextTrackCueList.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/track/TextTrackList.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/track/TrackListBase.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/inspector/DOMPatchSupport.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/inspector/DevToolsHost.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/inspector/InspectorHistory.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/DepthOrderedLayoutObjectList.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/HitTestCache.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/LayoutTable.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/LayoutText.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/line/LineBreaker.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_box_state.cc
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node_test.cc
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/ng/inline/ng_layout_inline_items_builder_test.cc
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/ng/ng_exclusion.cc
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/ng/ng_floats_utils.cc
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/ng/ng_fragment_builder.cc
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part.cc
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/svg/LayoutSVGPath.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutEngine.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/loader/HistoryItem.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/loader/resource/MultipartImageResourceParser.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/page/CustomContextMenuProvider.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/page/PrintContext.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/page/TouchDisambiguation.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/paint/PaintLayerStackingNode.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/style/FilterOperations.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/svg/SVGAnimationElement.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/svg/SVGPathByteStream.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/svg/SVGPathUtilities.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/svg/SVGStringList.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/svg/SVGStringList.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/svg/SVGStringListTearOff.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/timing/PerformanceBase.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/timing/PerformanceObserver.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/xml/XPathNodeSet.h
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/accessibility/AXTable.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/accessibility/InspectorAccessibilityAgent.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/encryptedmedia/MediaKeyStatusMap.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/eventsource/EventSourceParser.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/fetch/FormDataBytesConsumer.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/filesystem/DirectoryReader.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/mediasource/SourceBuffer.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/mediastream/MediaStream.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/payments/PaymentRequest.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/peerconnection/RTCRtpReceiver.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/plugins/PluginOcclusionSupport.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/sensor/SensorProxy.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/vibration/VibrationController.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/vr/VRController.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/webaudio/AudioParamTimeline.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/webaudio/AudioWorkletGlobalScope.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
[modify] https://crrev.com/ef0f5124f650c8e4a72ec58a1b2ff8a9f526a07d/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
[modify] https://crrev.com/ef0f5124f650
Cc: dcheng@chromium.org
 Issue 713374  has been merged into this issue.
Project Member

Comment 16 by bugdroid1@chromium.org, Apr 21 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac

commit f136fcd4e3d687e27f0a78f432f18eaa8dc12cac
Author: Daniel Cheng <dcheng@chromium.org>
Date: Fri Apr 21 01:48:29 2017

Revert to lowercase data() for WTF to match STL.

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel
TBR=rockot@chromium.org

Bug: 709815
Change-Id: I3d4371eb923e998b9775ebbdb9e563cdced4f2d4
Reviewed-on: https://chromium-review.googlesource.com/483040
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#466219}
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/mojo/public/cpp/bindings/array_traits_wtf_vector.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/LocalWindowProxy.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinitionBuilder.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/ScriptModuleTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValue.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/ToV8Test.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/core/v8/WorkerOrWorkletScriptController.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModulesTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/templates/interface.cpp.tmpl
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/CSSSelector.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/MediaQuerySetTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/RuleSet.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/RuleSetTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/StylePropertySet.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/invalidation/InvalidationSet.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/parser/CSSSelectorParserTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/parser/CSSTokenizerTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/parser/MediaConditionTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/AttributeCollection.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/Element.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/ElementData.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/ElementDataCache.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/Node.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/PresentationAttributeStyle.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/Range.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/URLSearchParams.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskImportStep.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/EditingStyle.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/InputMethodControllerTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/Position.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/SelectionTemplate.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/VisibleUnits.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/iterators/BackwardsTextBufferTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/iterators/ForwardsTextBufferTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/iterators/SearchBuffer.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/iterators/SimplifiedBackwardsTextIteratorTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/iterators/TextIteratorTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/iterators/TextSearcherICU.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/serializers/StyledMarkupSerializerTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/events/EventListenerMap.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/events/EventTarget.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/fileapi/FileReader.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/fileapi/FileReaderLoader.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/DOMWindowBase64.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/Frame.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/FrameSerializer.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/Location.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/SubresourceIntegrity.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/SubresourceIntegrityTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/SuspendableScriptExecutor.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/csp/CSPDirectiveListTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicyTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/csp/MediaListDirective.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/csp/SourceListDirective.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/frame/csp/SourceListDirectiveTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/FormData.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/FormDataTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/HTMLDimension.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/HTMLElement.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/HTMLShadowElement.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/ImageDocumentTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/LinkRelAttributeTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/canvas/CanvasAsyncBlobCreator.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/forms/BaseTextInputType.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/forms/InputType.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/imports/HTMLImportChild.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/media/MediaFragmentURIParser.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/AtomicHTMLToken.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/AtomicHTMLToken.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/CSSPreloadScanner.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/HTMLPreloadScannerFuzzer.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/HTMLPreloadScannerTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/HTMLSrcsetParserTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/HTMLTokenizer.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/TextResourceDecoder.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/TextResourceDecoderFuzzer.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/parser/XSSAuditorDelegate.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/inspector/DOMPatchSupport.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/inspector/DevToolsHost.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/LayoutBlockTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/LayoutGeometryMap.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/LayoutObject.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/LayoutObjectTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/LayoutQuote.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/line/InlineBox.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/line/InlineTextBox.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/geometry/ng_logical_rect.cc
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/geometry/ng_physical_rect.cc
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/inline/ng_bidi_paragraph.cc
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/ng_exclusion.cc
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/ng_floating_object.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/ng_layout_opportunity_iterator.cc
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/ng_layout_opportunity_tree_node.cc
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment.cc
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/layout/svg/SVGResources.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/loader/FormSubmission.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/loader/FrameLoader.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/loader/PingLoader.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/loader/resource/MultipartImageResourceParser.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/loader/resource/MultipartImageResourceParserTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/mojo/MojoHandle.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/page/ContextMenuControllerTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/page/FrameTree.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/page/PagePopupClient.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/paint/PaintControllerPaintTest.h
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/paint/PaintLayer.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinterTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/streams/ReadableStreamOperationsTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/streams/Stream.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/svg/UnsafeSVGAttributeSanitizationTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/testing/Internals.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/timing/PerformanceUserTiming.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/xml/XSLTProcessorLibxslt.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/xml/XSLTUnicodeSort.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTUtils.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/cachestorage/CacheTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/credentialmanager/PasswordCredential.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/crypto/SubtleCrypto.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/encoding/TextEncoder.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/eventsource/EventSource.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/eventsource/EventSourceParser.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/BlobBytesConsumerTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/BodyStreamBufferTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/BytesConsumer.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/BytesConsumerTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/BytesConsumerTestUtil.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/FormDataBytesConsumer.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/FormDataBytesConsumerTest.cpp
[modify] https://crrev.com/f136fcd4e3d687e27f0a78f432f18eaa8dc12cac/third_party/WebKit/Source/modules/fetch/ReadableSt
Project Member

Comment 17 by bugdroid1@chromium.org, Apr 22 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/e814d1f84152018b469fbe6e39412111afa31aa0

commit e814d1f84152018b469fbe6e39412111afa31aa0
Author: Daniel Cheng <dcheng@chromium.org>
Date: Sat Apr 22 02:43:05 2017

Revert to lowercase data() for WTF to match STL (part 2).

Bug: 709815
Change-Id: I7021c804a1d560105275cc6982190360cb3c9100
Reviewed-on: https://chromium-review.googlesource.com/483945
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#466526}
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/fonts/skia/FontCacheSkia.cpp
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/fonts/win/FontCacheSkiaWin.cpp
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/text/HyphenationTest.cpp
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/text/LocaleMacTest.cpp
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/text/LocaleWinTest.cpp
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/wtf/Vector.h
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/wtf/VectorTest.cpp
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/wtf/text/AtomicStringCF.cpp
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/wtf/text/CString.h
[modify] https://crrev.com/e814d1f84152018b469fbe6e39412111afa31aa0/third_party/WebKit/Source/platform/wtf/text/StringMac.mm

Project Member

Comment 18 by bugdroid1@chromium.org, Apr 24 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/6edb4adf96be1878dd2721dafac9d15dde07669c

commit 6edb4adf96be1878dd2721dafac9d15dde07669c
Author: Daniel Cheng <dcheng@chromium.org>
Date: Mon Apr 24 14:07:56 2017

Rename Hash{Map,Set}::clear() to match STL convention.

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel
TBR=yzshen@chromium.org

Bug: 709815
Change-Id: Ieb97b830fba8718d9c89916eefe5479b3c4d1f3e
Reviewed-on: https://chromium-review.googlesource.com/485300
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Reviewed-by: Yuta Kitamura <yutak@chromium.org>
Cr-Commit-Position: refs/heads/master@{#466627}
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/mojo/public/cpp/bindings/map_traits_wtf_hash_map.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/bindings/core/v8/DOMWrapperWorld.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/animation/css/CSSAnimationUpdate.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/css/CSSValuePool.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/css/FontFaceCache.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/css/RuleFeature.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/CSSSelectorWatchTest.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/IntersectionObserverController.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/ModuleMap.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/MutationObserver.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/PresentationAttributeStyle.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/ScriptedIdleTaskController.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/SelectorQuery.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/StyleEngine.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/dom/shadow/ElementShadowV0.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/events/PointerEventFactory.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/frame/LocalFrame.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/frame/SubresourceIntegrity.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/html/PublicURLManager.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/html/forms/FormController.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/input/PointerEventManager.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/input/TouchEventManager.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorResourceContainer.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/DepthOrderedLayoutObjectList.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/Grid.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/LayoutBox.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceFilter.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceGradient.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourcePattern.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/svg/SVGResourcesCycleSolver.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/loader/private/CrossOriginPreflightResultCache.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/page/PrintContext.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/svg/SVGElement.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/timing/PerformanceUserTiming.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/workers/MainThreadWorklet.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/workers/ThreadedWorklet.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/xml/XPathParser.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/xml/XSLTProcessor.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/core/xml/XSLTProcessor.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/bluetooth/BluetoothAttributeInstanceMap.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/canvas2d/HitRegion.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/geolocation/GeolocationWatchers.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/imagecapture/ImageCapture.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/nfc/NFC.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/remoteplayback/RemotePlayback.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/shapedetection/BarcodeDetector.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/shapedetection/FaceDetector.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/shapedetection/TextDetector.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webaudio/AudioWorkletGlobalScope.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webdatabase/DatabaseThread.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webdatabase/SQLTransactionCoordinator.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webshare/NavigatorShare.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webusb/USB.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/modules/webusb/USBDevice.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/LayoutLocale.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/fonts/FontCache.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/fonts/GenericFontFamilySettings.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/graphics/paint/PropertyTreeStateTest.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/heap/HeapTest.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/heap/Persistent.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/instrumentation/tracing/web_process_memory_dump.cc
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/loader/fetch/Resource.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/network/HTTPHeaderMap.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/testing/weburl_loader_mock_factory_impl.cc
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/wtf/HashCountedSet.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/wtf/HashMap.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/wtf/HashMapTest.cpp
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/wtf/HashSet.h
[modify] https://crrev.com/6edb4adf96be1878dd2721dafac9d15dde07669c/third_party/WebKit/Source/platform/wtf/HashSetTest.cpp

Project Member

Comment 19 by bugdroid1@chromium.org, Apr 25 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/cdda6c444ee67ea8319ca6f63b2981210141a28c

commit cdda6c444ee67ea8319ca6f63b2981210141a28c
Author: Daniel Cheng <dcheng@chromium.org>
Date: Tue Apr 25 16:16:57 2017

Use lowercase for Hash{Map,Set,Table}::find() to match STL.

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel
TBR=yzshen@chromium.org

Bug: 709815
Change-Id: I51b149c2d6c6be380baba5a10e8151bd655546ce
Reviewed-on: https://chromium-review.googlesource.com/486168
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Yuzhu Shen <yzshen@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#467004}
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/mojo/public/cpp/bindings/tests/wtf_map_unittest.cc
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/bindings/core/v8/DOMWrapperWorld.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/bindings/core/v8/V8DOMActivityLogger.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueDeserializer.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/animation/AnimationInputHelpers.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/animation/CSSInterpolationTypesMap.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/animation/KeyframeEffectModel.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/animation/SVGInterpolationTypesMap.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/css/FontFaceCache.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/css/RuleFeature.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/css/resolver/StyleRuleUsageTracker.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/DocumentOrderedMap.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/DocumentOrderedMap.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/ElementIntersectionObserverData.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/IdTargetObserverRegistry.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/ModuleMap.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/NthIndexCache.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/ResizeObserver.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/ScriptModuleResolverImpl.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/ScriptRunner.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/SelectorQuery.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/StyleEngine.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/UserActionElementSet.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeSorter.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/custom/V0CustomElementObserver.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/custom/V0CustomElementUpgradeCandidateMap.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/dom/shadow/ElementShadowV0.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/events/EventPath.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/fileapi/FileReader.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/frame/FrameView.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/html/HTMLCollection.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/html/canvas/CanvasFontCache.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/html/forms/FormController.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/html/forms/InputType.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/input/PointerEventManager.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/input/TouchEventManager.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/inspector/DOMPatchSupport.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/DepthOrderedLayoutObjectList.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/ImageQualityController.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/LayoutCounter.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/LayoutObject.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/VerticalPositionCache.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/line/AbstractInlineTextBox.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/line/InlineTextBox.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/line/RootInlineBox.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/layout/svg/line/SVGRootInlineBox.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/loader/modulescript/ModuleScriptLoaderRegistry.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinkerRegistry.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinkerTest.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/loader/private/CrossOriginPreflightResultCache.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/page/WindowFeatures.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/page/scrolling/ScrollCustomizationCallbacks.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/paint/PaintLayer.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/style/GridPositionsResolver.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/svg/SVGElementProxy.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/svg/SVGTreeScopeResources.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/timing/PerformanceUserTiming.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/xml/XPathFunctions.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/xml/XPathParser.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/geolocation/GeolocationWatchers.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/mediasession/MediaSession.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/mediasource/MediaSourceRegistry.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/mediastream/MediaStreamTrack.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/nfc/NFC.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/peerconnection/RTCRtpReceiver.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/peerconnection/RTCStatsResponse.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/remoteplayback/RemotePlayback.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webdatabase/Database.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webdatabase/QuotaTracker.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webdatabase/SQLTransactionCoordinator.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webusb/USB.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/modules/webusb/USBDevice.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/audio/HRTFElevation.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/fonts/FontCache.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/fonts/FontDataCache.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/fonts/GenericFontFamilySettings.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/fonts/skia/FontCacheSkia.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/graphics/CompositorMutableStateTest.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/graphics/OffscreenCanvasPlaceholder.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/graphics/compositing/PropertyTreeManager.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTestHelpers.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/graphics/paint/RasterInvalidationTracking.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/heap/HeapCompact.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/heap/HeapTest.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/json/JSONValues.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/loader/fetch/MemoryCache.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/mediastream/MediaStreamSource.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/network/HTTPHeaderMap.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/network/NetworkStateNotifier.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/network/ParsedContentType.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/testing/weburl_loader_mock_factory_impl.cc
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/text/LocaleToScriptMapping.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/text/hyphenation/HyphenationMinikin.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/wtf/HashCountedSet.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/wtf/HashMap.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/wtf/HashMapTest.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/wtf/HashSet.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/wtf/HashSetTest.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/wtf/HashTable.h
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/wtf/text/AtomicStringTable.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/platform/wtf/text/StringImpl.cpp
[modify] https://crrev.com/cdda6c444ee67ea8319ca6f63b2981210141a28c/third_party/WebKit/Source/web/tests/sim/SimNetwork.cpp

Project Member

Comment 20 by bugdroid1@chromium.org, Apr 26 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/e850348aa3306a9faea829ef0bfbf3cf76e7850c

commit e850348aa3306a9faea829ef0bfbf3cf76e7850c
Author: Daniel Cheng <dcheng@chromium.org>
Date: Wed Apr 26 10:54:01 2017

Match STL naming for WTF::Vector::swap()

Bug: 709815
CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2
Change-Id: I6e5a2665f2b82b993a4544a8cbd052fadc35d987

Change-Id: I6e5a2665f2b82b993a4544a8cbd052fadc35d987
Reviewed-on: https://chromium-review.googlesource.com/487901
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#467293}
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/animation/CompositorPendingAnimations.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/animation/SVGTransformListInterpolationType.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.h
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/css/CSSPaintValue.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/css/FontFace.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/css/FontFaceSet.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/css/MediaList.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/css/StyleRule.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/IntersectionObserver.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/MutationObserver.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/ScriptedIdleTaskController.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/StyleSheetCollection.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/TouchList.h
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/dom/shadow/ShadowRootRareDataV0.h
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/events/EventSender.h
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/events/GenericEventQueue.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/events/ScopedEventQueue.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/TimeRanges.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/parser/HTMLConstructionSite.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/parser/ResourcePreloader.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_layout_algorithm.cc
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/layout/ng/inline/ng_physical_line_box_fragment.cc
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/layout/ng/ng_block_break_token.cc
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/layout/ng/ng_layout_result.cc
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/style/ShadowList.h
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/timing/PerformanceObserver.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/xml/XPathNodeSet.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/xml/XPathNodeSet.h
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/xml/XPathPath.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/core/xml/XPathStep.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/csspaint/CSSPaintDefinition.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/filesystem/DirectoryReader.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/filesystem/DirectoryReaderSync.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/filesystem/FileSystemCallbacks.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/mediasession/MediaMetadata.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/mediastream/MediaDevices.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/mediastream/MediaStream.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/peerconnection/RTCDTMFSender.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/SharedBuffer.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/geometry/Region.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/graphics/ContiguousContainer.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/graphics/GraphicsLayerDebugInfo.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/graphics/paint/ClipDisplayItem.h
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/graphics/paint/PaintChunker.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/heap/HeapTest.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/wtf/Vector.h
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/wtf/VectorTest.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/platform/wtf/text/StringBuilder.cpp
[modify] https://crrev.com/e850348aa3306a9faea829ef0bfbf3cf76e7850c/third_party/WebKit/Source/web/TextFinder.cpp

Project Member

Comment 21 by bugdroid1@chromium.org, Apr 26 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/e9f7bc11b4fe6c80716f229661aebac7d6138cda

commit e9f7bc11b4fe6c80716f229661aebac7d6138cda
Author: Daniel Cheng <dcheng@chromium.org>
Date: Wed Apr 26 11:41:40 2017

Match STL naming for WTF::{Deque,HashCountedSet,HashMap,LinkedHashSet,ListHashSet}

Bug: 709815
Change-Id: I8f35864239dc5a606b473cdd82add2e68a76cb08
Reviewed-on: https://chromium-review.googlesource.com/487861
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#467298}
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/css/CSSFontFace.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/css/FontFaceSet.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/dom/Fullscreen.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/editing/commands/UndoStack.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckRequester.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/events/DOMWindowEventQueue.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/input/PointerEventManager.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/inspector/ConsoleMessageStorage.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/fetch/BytesConsumer.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/fetch/BytesConsumerTestUtil.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/gamepad/NavigatorGamepad.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/graphics/gpu/SharedContextRateLimiter.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/scheduler/base/task_queue_impl.cc
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/text/SegmentedString.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/wtf/Deque.h
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/wtf/DequeTest.cpp
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/wtf/HashCountedSet.h
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/wtf/HashMap.h
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/wtf/LinkedHashSet.h
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/wtf/ListHashSet.h
[modify] https://crrev.com/e9f7bc11b4fe6c80716f229661aebac7d6138cda/third_party/WebKit/Source/platform/wtf/ListHashSetTest.cpp

Major items that are left (that I'm aware of):

From String:
- Append
- Swap
- Replace
- Find

From AtomicString:
- Find
Vector::Resize() -> resize() ?





Project Member

Comment 24 by bugdroid1@chromium.org, Apr 27 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/ba998737c0478f4f37c45b068044266af945f30c

commit ba998737c0478f4f37c45b068044266af945f30c
Author: Daniel Cheng <dcheng@chromium.org>
Date: Thu Apr 27 01:54:07 2017

Use STL-style naming for WTF::String::append().

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2

Bug: 709815
Change-Id: Id4f7681d1ea03a8e75e3cbaecc09a78976df87ac
Reviewed-on: https://chromium-review.googlesource.com/488121
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#467545}
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/clipboard/DataObjectTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/editing/iterators/TextIteratorTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThreadTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node_test.cc
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilderTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/modules/document_metadata/CopylessPasteExtractorTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/modules/filesystem/DOMFileSystemBaseTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/modules/nfc/NFC.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/modules/websockets/DOMWebSocketTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/fonts/OrientationIteratorTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/fonts/ScriptRunIteratorTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/fonts/SmallCapsIteratorTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/fonts/SymbolsIteratorTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/fonts/shaping/RunSegmenterTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/image-decoders/ImageDecoderTestHelpers.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/text/UnicodeUtilitiesTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/wtf/text/StringBuilderTest.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/wtf/text/WTFString.cpp
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/platform/wtf/text/WTFString.h
[modify] https://crrev.com/ba998737c0478f4f37c45b068044266af945f30c/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp

Project Member

Comment 26 by bugdroid1@chromium.org, Apr 27 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/5c60b348c30edbc1bc214674794b4ef2f6e9405d

commit 5c60b348c30edbc1bc214674794b4ef2f6e9405d
Author: Daniel Cheng <dcheng@chromium.org>
Date: Thu Apr 27 04:50:58 2017

Use STL style naming for WTF::Vector::resize()

TBR=yzshen@chromium.org

Bug: 709815
Change-Id: Ic2967caa96c4a42782766541472494aa27bc6179
Reviewed-on: https://chromium-review.googlesource.com/488170
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Cr-Commit-Position: refs/heads/master@{#467583}
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/mojo/public/cpp/bindings/array_traits_wtf_vector.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValue.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/bindings/core/v8/SerializedScriptValueTest.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/css/CSSValuePool.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/dom/MessagePort.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/dom/custom/CustomElementReactionQueue.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackQueue.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/dom/custom/V0CustomElementProcessingStack.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/dom/shadow/ElementShadowV0.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/editing/iterators/SearchBuffer.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/editing/iterators/TextBufferBase.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/inspector/InspectorHistory.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/ColumnBalancer.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/Grid.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/HitTestCache.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/LayoutTable.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/line/InlineTextBox.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/line/TrailingObjects.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_box_state.cc
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_layout_algorithm.cc
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/shapes/RasterShape.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/layout/shapes/RasterShape.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/streams/Stream.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/core/timing/MemoryInfo.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/accessibility/AXInlineTextBox.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/cachestorage/Cache.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/gamepad/Gamepad.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/nfc/NFC.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/notifications/NotificationResourcesLoader.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/permissions/Permissions.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/storage/Storage.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webaudio/AudioParamTimeline.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webaudio/AudioSummingJunction.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/modules/webusb/USBDevice.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/Language.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/audio/AudioResampler.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/fonts/Font.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/fonts/opentype/OpenTypeVerticalData.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/geometry/Region.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/graphics/ImageFrameGenerator.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/graphics/gpu/WebGLImageConversion.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/heap/ThreadState.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/image-decoders/ImageDecoder.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/image-decoders/ImageDecoderTest.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageReader.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/image-encoders/JPEGImageEncoder.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/loader/fetch/ResourceResponse.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/text/DecodeEscapeSequences.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/text/SuffixTree.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/wtf/HashCountedSet.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/wtf/HashMap.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/wtf/HashSet.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/wtf/StringExtrasTest.cpp
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/wtf/Vector.h
[modify] https://crrev.com/5c60b348c30edbc1bc214674794b4ef2f6e9405d/third_party/WebKit/Source/platform/wtf/text/StringBuilder.cpp

Project Member

Comment 27 by bugdroid1@chromium.org, Apr 27 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/3eb135e093c647c721db4297d29785d1b13255c3

commit 3eb135e093c647c721db4297d29785d1b13255c3
Author: Daniel Cheng <dcheng@chromium.org>
Date: Thu Apr 27 04:54:58 2017

Use STL style naming for a WTF::String::replace() overload

Note that this only changes the one overload that matches the semantics
of std::basic_string<T>::replace(): STL doesn't provide an overload to
find a pattern and replace that pattern.

Bug: 709815
Change-Id: If1ef5a6233fd39d02f76cadb1e5d18d9d6905831
Reviewed-on: https://chromium-review.googlesource.com/487902
Reviewed-by: Yuta Kitamura <yutak@chromium.org>
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#467584}
[modify] https://crrev.com/3eb135e093c647c721db4297d29785d1b13255c3/third_party/WebKit/Source/core/frame/Navigator.cpp
[modify] https://crrev.com/3eb135e093c647c721db4297d29785d1b13255c3/third_party/WebKit/Source/core/html/TextControlElement.cpp
[modify] https://crrev.com/3eb135e093c647c721db4297d29785d1b13255c3/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
[modify] https://crrev.com/3eb135e093c647c721db4297d29785d1b13255c3/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
[modify] https://crrev.com/3eb135e093c647c721db4297d29785d1b13255c3/third_party/WebKit/Source/core/layout/LayoutText.cpp
[modify] https://crrev.com/3eb135e093c647c721db4297d29785d1b13255c3/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
[modify] https://crrev.com/3eb135e093c647c721db4297d29785d1b13255c3/third_party/WebKit/Source/platform/wtf/text/WTFString.h
[modify] https://crrev.com/3eb135e093c647c721db4297d29785d1b13255c3/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Project Member

Comment 28 by bugdroid1@chromium.org, Apr 27 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/488d76c52ca6b91e1287ad21608c3bca20d016cb

commit 488d76c52ca6b91e1287ad21608c3bca20d016cb
Author: Daniel Cheng <dcheng@chromium.org>
Date: Thu Apr 27 05:01:58 2017

Use STL style naming for some WTF::String::find() overloads.

Bug: 709815
Change-Id: Ib4ceec1a6a369a055e24f60ca54e6c694b6a70d1
Reviewed-on: https://chromium-review.googlesource.com/488161
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Commit-Queue: Daniel Cheng <dcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#467588}
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/dom/TreeScope.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/dom/URLSearchParams.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/editing/commands/InsertTextCommand.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/editing/iterators/TextIterator.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/editing/serializers/Serialization.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/frame/NavigatorID.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/html/HTMLDimension.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/html/HTMLElement.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/html/media/MediaFragmentURIParser.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/inspector/IdentifiersFactory.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/loader/DocumentLoader.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/loader/private/CrossOriginPreflightResultCache.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/page/WindowFeatures.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/xml/XPathFunctions.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/core/xml/XPathParser.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/modules/cachestorage/InspectorCacheStorageAgent.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/loader/fetch/ResourceResponse.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/network/HTTPParsers.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/network/mime/ContentType.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/network/mime/MIMETypeFromURL.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/text/DateTimeFormat.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/text/DecodeEscapeSequences.h
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/text/LocaleMac.mm
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/text/LocaleToScriptMapping.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/text/LocaleWin.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/text/PlatformLocale.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/weborigin/KURL.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/wtf/text/AtomicString.h
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/wtf/text/TextPosition.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/wtf/text/WTFString.cpp
[modify] https://crrev.com/488d76c52ca6b91e1287ad21608c3bca20d016cb/third_party/WebKit/Source/platform/wtf/text/WTFString.h

Project Member

Comment 29 by bugdroid1@chromium.org, Apr 29 2017

Blockedon: 716991

Sign in to add a comment