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

Unified Diff: third_party/WebKit/Source/platform/graphics/PathTraversalState.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/PathTraversalState.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp b/third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp
index 2c5b6bb7716f635573c73a6ae390a07013b329d5..1a0eadc97a1a7d5162c85e9208c0b15a92304a28 100644
--- a/third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp
+++ b/third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp
@@ -157,7 +157,7 @@ static float curveLength(PathTraversalState& traversalState, CurveType curve) {
return totalLength;
}
curve = curveStack.last();
- curveStack.removeLast();
+ curveStack.pop_back();
}
} while (!curveStack.isEmpty());

Powered by Google App Engine
This is Rietveld 408576698