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

Unified Diff: third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp

Issue 2746763009: Migrate WTF::Deque::prepend() to ::push_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/graphics/Canvas2DLayerBridge.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
index 1e530caec900cc467f2c7bcfabab52d05dc0a05f..8197382b63dfefa3f05a523828f8f7fc44d08dde 100644
--- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
+++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
@@ -369,7 +369,7 @@ void Canvas2DLayerBridge::clearCHROMIUMImageCache() {
void Canvas2DLayerBridge::createMailboxInfo() {
MailboxInfo tmp;
tmp.m_parentLayerBridge = this;
- m_mailboxes.prepend(tmp);
+ m_mailboxes.push_front(tmp);
}
bool Canvas2DLayerBridge::prepareMailboxFromImage(

Powered by Google App Engine
This is Rietveld 408576698