| 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(
|
|
|