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

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

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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/GraphicsLayer.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
index db81304fab7f368b78f89c864302c78a8960453c..32f307ae6586b4231d9813c7b843200a1323ca33 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
@@ -81,7 +81,7 @@ rasterInvalidationTrackingMap() {
std::unique_ptr<GraphicsLayer> GraphicsLayer::create(
GraphicsLayerClient* client) {
- return wrapUnique(new GraphicsLayer(client));
+ return WTF::wrapUnique(new GraphicsLayer(client));
}
GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client)
@@ -116,7 +116,7 @@ GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client)
m_client->verifyNotPainting();
#endif
- m_contentLayerDelegate = makeUnique<ContentLayerDelegate>(this);
+ m_contentLayerDelegate = WTF::makeUnique<ContentLayerDelegate>(this);
m_layer = Platform::current()->compositorSupport()->createContentLayer(
m_contentLayerDelegate.get());
m_layer->layer()->setDrawsContent(m_drawsContent && m_contentsVisible);

Powered by Google App Engine
This is Rietveld 408576698