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

Unified Diff: third_party/WebKit/Source/core/dom/Fullscreen.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/core/dom/Fullscreen.cpp
diff --git a/third_party/WebKit/Source/core/dom/Fullscreen.cpp b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
index a0597c670f1f688195574cea1f82fffbfa28162a..23475494851e755f9b0f7886977432ed3308a023 100644
--- a/third_party/WebKit/Source/core/dom/Fullscreen.cpp
+++ b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
@@ -780,7 +780,7 @@ void Fullscreen::enqueueChangeEvent(Document& document,
target = &document;
event = createEvent(EventTypeNames::webkitfullscreenchange, *target);
}
- m_eventQueue.append(event);
+ m_eventQueue.push_back(event);
// NOTE: The timer is started in didEnterFullscreen/didExitFullscreen.
}
@@ -790,7 +790,7 @@ void Fullscreen::enqueueErrorEvent(Element& element, RequestType requestType) {
event = createEvent(EventTypeNames::fullscreenerror, element.document());
else
event = createEvent(EventTypeNames::webkitfullscreenerror, element);
- m_eventQueue.append(event);
+ m_eventQueue.push_back(event);
m_eventQueueTimer.startOneShot(0, BLINK_FROM_HERE);
}
@@ -806,7 +806,7 @@ void Fullscreen::eventQueueTimerFired(TimerBase*) {
// documentElement.
if (!target->isConnected() && document()->documentElement()) {
DCHECK(isPrefixed(event->type()));
- eventQueue.append(
+ eventQueue.push_back(
createEvent(event->type(), *document()->documentElement()));
}
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSFontFace.cpp ('k') | third_party/WebKit/Source/core/dom/ScriptRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698