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

Unified Diff: third_party/WebKit/Source/modules/vr/VRController.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/modules/vr/VRController.cpp
diff --git a/third_party/WebKit/Source/modules/vr/VRController.cpp b/third_party/WebKit/Source/modules/vr/VRController.cpp
index 028834ba218097cc143015c0104c078f9910326c..7c4b85955e7ccd0eb53368333b9ac06498b0d40d 100644
--- a/third_party/WebKit/Source/modules/vr/VRController.cpp
+++ b/third_party/WebKit/Source/modules/vr/VRController.cpp
@@ -44,7 +44,7 @@ void VRController::getDisplays(ScriptPromiseResolver* resolver) {
// Otherwise we're still waiting for the full list of displays to be populated
// so queue up the promise for resolution when onDisplaysSynced is called.
- m_pendingGetDevicesCallbacks.append(
+ m_pendingGetDevicesCallbacks.push_back(
WTF::makeUnique<VRGetDevicesCallback>(resolver));
}

Powered by Google App Engine
This is Rietveld 408576698