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

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

Powered by Google App Engine
This is Rietveld 408576698