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

Unified Diff: third_party/WebKit/Source/platform/graphics/ImageLayerChromiumTest.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/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;

Powered by Google App Engine
This is Rietveld 408576698