| Index: third_party/WebKit/Source/platform/graphics/GraphicsLayerTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayerTest.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsLayerTest.cpp
|
| index 3be93aaffb6af2d999a61eca5adf76d1f3e68788..7688182ebf3474a74ddc2ba3f695d209b274f77f 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsLayerTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayerTest.cpp
|
| @@ -53,15 +53,15 @@ namespace blink {
|
| class GraphicsLayerTest : public testing::Test {
|
| public:
|
| GraphicsLayerTest() {
|
| - m_clipLayer = wrapUnique(new FakeGraphicsLayer(&m_client));
|
| - m_scrollElasticityLayer = wrapUnique(new FakeGraphicsLayer(&m_client));
|
| - m_graphicsLayer = wrapUnique(new FakeGraphicsLayer(&m_client));
|
| + m_clipLayer = WTF::wrapUnique(new FakeGraphicsLayer(&m_client));
|
| + m_scrollElasticityLayer = WTF::wrapUnique(new FakeGraphicsLayer(&m_client));
|
| + m_graphicsLayer = WTF::wrapUnique(new FakeGraphicsLayer(&m_client));
|
| m_clipLayer->addChild(m_scrollElasticityLayer.get());
|
| m_scrollElasticityLayer->addChild(m_graphicsLayer.get());
|
| m_graphicsLayer->platformLayer()->setScrollClipLayer(
|
| m_clipLayer->platformLayer());
|
| m_platformLayer = m_graphicsLayer->platformLayer();
|
| - m_layerTreeView = wrapUnique(new WebLayerTreeViewImplForTesting);
|
| + m_layerTreeView = WTF::wrapUnique(new WebLayerTreeViewImplForTesting);
|
| ASSERT(m_layerTreeView);
|
| m_layerTreeView->setRootLayer(*m_clipLayer->platformLayer());
|
| m_layerTreeView->registerViewportLayers(
|
|
|