Index: Source/core/html/canvas/CanvasRenderingContextFactory.cpp |
diff --git a/Source/core/html/canvas/CanvasRenderingContextFactory.cpp b/Source/core/html/canvas/CanvasRenderingContextFactory.cpp |
deleted file mode 100644 |
index 084780d4cdebd72ad95c5782d1af48108a806897..0000000000000000000000000000000000000000 |
--- a/Source/core/html/canvas/CanvasRenderingContextFactory.cpp |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-// Copyright (c) 2014 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 "config.h" |
-#include "core/html/canvas/CanvasRenderingContextFactory.h" |
- |
-#include "core/html/HTMLCanvasElement.h" |
-#include "core/html/canvas/CanvasRenderingContext2D.h" |
-#include "wtf/OwnPtr.h" |
- |
-namespace blink { |
- |
-void CanvasRenderingContextFactory::init() |
-{ |
- OwnPtr<CanvasRenderingContextFactory> canvas2dFactory = adoptPtr(new CanvasRenderingContext2D::Factory()); |
- HTMLCanvasElement::registerRenderingContextFactory(canvas2dFactory.release()); |
-} |
- |
-} // namespace blink |