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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.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/core/html/parser/HTMLParserScriptRunner.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp b/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp
index 7d37751098d19bcd864a5a1efd2a57829ce492b9..13e32ead8ebeace02643cf93e363a96ccb77a171 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLParserScriptRunner.cpp
@@ -374,7 +374,7 @@ void HTMLParserScriptRunner::pendingScriptFinished(
// this code path.
CHECK(false);
- m_scriptsToExecuteAfterParsing.removeFirst();
+ m_scriptsToExecuteAfterParsing.pop_front();
// TODO(hiroshige): executeScriptsWaitingForParsing() should be
// called later at the appropriate time. https://crbug.com/696775
}

Powered by Google App Engine
This is Rietveld 408576698