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

Unified Diff: third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp

Issue 2610253004: Migrate WTF::Vector::append() to ::push_back() [part 9 of N] (Closed)
Patch Set: rebase Created 3 years, 11 months 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/layout/PaintInvalidationState.cpp
diff --git a/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp b/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
index fe434f3179b39c54f4fcd6126216a20eb2531867..b5ed7aefcf38057430b8cb4928bcef9b614db91b 100644
--- a/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
+++ b/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
@@ -318,7 +318,7 @@ void PaintInvalidationState::updateForChildren(PaintInvalidationReason reason) {
switch (reason) {
case PaintInvalidationDelayedFull:
- m_pendingDelayedPaintInvalidations.append(&m_currentObject);
+ m_pendingDelayedPaintInvalidations.push_back(&m_currentObject);
break;
case PaintInvalidationSubtree:
m_forcedSubtreeInvalidationFlags |=

Powered by Google App Engine
This is Rietveld 408576698