| Index: third_party/WebKit/Source/platform/text/BidiContext.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/BidiContext.cpp b/third_party/WebKit/Source/platform/text/BidiContext.cpp
|
| index 28809b9edbf759829bfd52a5534a58f0c1b5213d..6aa7a26ed0003cd2a8c866f58b2ef773206d218f 100644
|
| --- a/third_party/WebKit/Source/platform/text/BidiContext.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/BidiContext.cpp
|
| @@ -105,7 +105,7 @@ BidiContext::copyStackRemovingUnicodeEmbeddingContexts() {
|
| Vector<BidiContext*, 64> contexts;
|
| for (BidiContext* iter = this; iter; iter = iter->parent()) {
|
| if (iter->source() != FromUnicode)
|
| - contexts.append(iter);
|
| + contexts.push_back(iter);
|
| }
|
| ASSERT(contexts.size());
|
|
|
|
|