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

Unified Diff: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp

Issue 2459003003: WTF/std normalization: replace WTF::Vector::removeLast with ::pop_back (Closed)
Patch Set: rebase Created 4 years, 1 month 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/platform/graphics/compositing/PaintArtifactCompositor.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
index 45863e473a9403740480412346f7967cedda4202..20bdc54ae91a8f1adb14099335f9ae675adbbb35 100644
--- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
+++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
@@ -640,7 +640,7 @@ int PropertyTreeManager::switchToEffectNode(
const EffectPaintPropertyNode* ancestor =
lowestCommonAncestor(currentEffectNode(), &nextEffect);
while (currentEffectNode() != ancestor)
- m_effectStack.removeLast();
+ m_effectStack.pop_back();
#if DCHECK_IS_ON()
DCHECK(m_isFirstEffectEver || currentEffectNode())

Powered by Google App Engine
This is Rietveld 408576698