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

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

Issue 2459003003: WTF/std normalization: replace WTF::Vector::removeLast with ::pop_back (Closed)
Patch Set: rebase Created 4 years, 1 month 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 70a7db9d2faa26fc82b0978d7a24de21a7025797..52dceedf925186898a50e1f6b5b2bd1404e9228f 100644
--- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
+++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
@@ -296,7 +296,7 @@ RefPtr<Canvas2DLayerBridge::ImageInfo>
Canvas2DLayerBridge::createIOSurfaceBackedTexture() {
if (!m_imageInfoCache.isEmpty()) {
RefPtr<Canvas2DLayerBridge::ImageInfo> info = m_imageInfoCache.last();
- m_imageInfoCache.removeLast();
+ m_imageInfoCache.pop_back();
return info;
}
« no previous file with comments | « third_party/WebKit/Source/platform/ContextMenu.h ('k') | third_party/WebKit/Source/platform/graphics/ContiguousContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698