Index: third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.cpp b/third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.cpp |
index f2fa9eb10853191ff6d66bfcfc5833f182b2b95f..f0af1a2145891216e6ecd93f9be3a5f3f42be5b7 100644 |
--- a/third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.cpp |
@@ -90,7 +90,7 @@ class TestImage : public Image { |
TEST(ImageLayerChromiumTest, imageLayerContentReset) { |
FakeGraphicsLayerClient client; |
std::unique_ptr<FakeGraphicsLayer> graphicsLayer = |
- wrapUnique(new FakeGraphicsLayer(&client)); |
+ WTF::wrapUnique(new FakeGraphicsLayer(&client)); |
ASSERT_TRUE(graphicsLayer.get()); |
ASSERT_FALSE(graphicsLayer->hasContentsLayer()); |
@@ -112,7 +112,7 @@ TEST(ImageLayerChromiumTest, imageLayerContentReset) { |
TEST(ImageLayerChromiumTest, opaqueImages) { |
FakeGraphicsLayerClient client; |
std::unique_ptr<FakeGraphicsLayer> graphicsLayer = |
- wrapUnique(new FakeGraphicsLayer(&client)); |
+ WTF::wrapUnique(new FakeGraphicsLayer(&client)); |
ASSERT_TRUE(graphicsLayer.get()); |
bool opaque = true; |