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

Unified Diff: third_party/WebKit/Source/platform/text/BidiContext.cpp

Issue 2615813003: Migrate WTF::Vector::append() to ::push_back() [part 14 of N] (Closed)
Patch Set: rebase, small fix in FontSettings.h Created 3 years, 11 months 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/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());

Powered by Google App Engine
This is Rietveld 408576698