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

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

Issue 2749753002: Migrate WTF::Deque::removeFirst() to ::pop_front() (Closed)
Patch Set: 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 3fe9b6f0a2d07ea0a3fc006033168c28367eb00d..d9cf272a89a982e82d518e257c8f0796c3840769 100644
--- a/third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp
+++ b/third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp
@@ -177,7 +177,7 @@ bool ScriptRunIterator::consume(unsigned& limit, UScriptCode& script) {
void ScriptRunIterator::openBracket(UChar32 ch) {
if (m_brackets.size() == kMaxBrackets) {
- m_brackets.removeFirst();
+ m_brackets.pop_front();
if (m_bracketsFixupDepth == kMaxBrackets) {
--m_bracketsFixupDepth;
}

Powered by Google App Engine
This is Rietveld 408576698