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

Unified Diff: third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp

Issue 2743023002: Migrate WTF::Deque::append() to ::push_back() (Closed)
Patch Set: rebase Created 3 years, 9 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/fonts/ScriptRunIterator.cpp
diff --git a/third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp b/third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp
index 0664966c9f64939c24d3a48ef26f305c81dbefaf..3fe9b6f0a2d07ea0a3fc006033168c28367eb00d 100644
--- a/third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp
+++ b/third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp
@@ -182,7 +182,7 @@ void ScriptRunIterator::openBracket(UChar32 ch) {
--m_bracketsFixupDepth;
}
}
- m_brackets.append(BracketRec({ch, USCRIPT_COMMON}));
+ m_brackets.push_back(BracketRec({ch, USCRIPT_COMMON}));
++m_bracketsFixupDepth;
}

Powered by Google App Engine
This is Rietveld 408576698