Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp

Issue 2571953004: Migrate WTF::Vector::append() to ::push_back() [part 5 of N] (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
diff --git a/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp b/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
index 5a0ed1b500457e1f927cb557bafb45db003c4ad8..740eb0e57540ad4c586e71a4f55cbe608e9f6d5a 100644
--- a/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
+++ b/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
@@ -77,7 +77,7 @@ void FullyClippedStateStackAlgorithm<Strategy>::setUpFullyClippedStack(
HeapVector<Member<ContainerNode>, 100> ancestry;
for (ContainerNode* parent = parentCrossingShadowBoundaries<Strategy>(*node);
parent; parent = parentCrossingShadowBoundaries<Strategy>(*parent))
- ancestry.append(parent);
+ ancestry.push_back(parent);
// Call pushFullyClippedState on each node starting with the earliest
// ancestor.

Powered by Google App Engine
This is Rietveld 408576698