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

Unified Diff: third_party/WebKit/Source/core/layout/BidiRunForLine.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/core/layout/BidiRunForLine.cpp
diff --git a/third_party/WebKit/Source/core/layout/BidiRunForLine.cpp b/third_party/WebKit/Source/core/layout/BidiRunForLine.cpp
index 9ae7deb56979d4d9f9d4311aca5f373c02c755dd..941e4a111de48f73cd55051537a90369b6323f56 100644
--- a/third_party/WebKit/Source/core/layout/BidiRunForLine.cpp
+++ b/third_party/WebKit/Source/core/layout/BidiRunForLine.cpp
@@ -119,7 +119,7 @@ void constructBidiRunsForLine(InlineBidiResolver& topResolver,
// It does not matter which order we resolve the runs as long as we
// resolve them all.
BidiIsolatedRun isolatedRun = topResolver.isolatedRuns().last();
- topResolver.isolatedRuns().removeLast();
+ topResolver.isolatedRuns().pop_back();
currentRoot = isolatedRun.root;
LineLayoutItem startObj = isolatedRun.object;
@@ -179,7 +179,7 @@ void constructBidiRunsForLine(InlineBidiResolver& topResolver,
// processing.
while (!isolatedResolver.isolatedRuns().isEmpty()) {
BidiIsolatedRun runWithContext = isolatedResolver.isolatedRuns().last();
- isolatedResolver.isolatedRuns().removeLast();
+ isolatedResolver.isolatedRuns().pop_back();
topResolver.setMidpointStateForIsolatedRun(
runWithContext.runToReplace,
isolatedResolver.midpointStateForIsolatedRun(

Powered by Google App Engine
This is Rietveld 408576698