Index: third_party/WebKit/Source/platform/graphics/test/FakeGraphicsLayerFactory.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/test/FakeGraphicsLayerFactory.cpp b/third_party/WebKit/Source/platform/graphics/test/FakeGraphicsLayerFactory.cpp |
deleted file mode 100644 |
index 370943835cda616bc77830a06d5d0b5fc7d5b04e..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/Source/platform/graphics/test/FakeGraphicsLayerFactory.cpp |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-// Copyright 2015 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "platform/graphics/test/FakeGraphicsLayerFactory.h" |
- |
-#include "platform/graphics/GraphicsLayer.h" |
-#include "wtf/PassOwnPtr.h" |
-#include "wtf/StdLibExtras.h" |
- |
-namespace blink { |
- |
-FakeGraphicsLayerFactory::FakeGraphicsLayerFactory() |
-{ |
-} |
- |
-// static |
-FakeGraphicsLayerFactory* FakeGraphicsLayerFactory::instance() |
-{ |
- DEFINE_STATIC_LOCAL(FakeGraphicsLayerFactory, factory, ()); |
- return &factory; |
-} |
- |
-PassOwnPtr<GraphicsLayer> FakeGraphicsLayerFactory::createGraphicsLayer(GraphicsLayerClient* client) |
-{ |
- return adoptPtr(new GraphicsLayer(client)); |
-} |
- |
-} // namespace blink |