| 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);
|
|
|