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

Unified Diff: webkit/compositor_bindings/web_compositor_support_impl.h

Issue 14651027: Move webkit/compositor_bindings into webkit/renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months 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: webkit/compositor_bindings/web_compositor_support_impl.h
diff --git a/webkit/compositor_bindings/web_compositor_support_impl.h b/webkit/compositor_bindings/web_compositor_support_impl.h
deleted file mode 100644
index bcd2e0085069c2e0afee5849a66a15acdf5b76c3..0000000000000000000000000000000000000000
--- a/webkit/compositor_bindings/web_compositor_support_impl.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_
-#define WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_
-
-#include "base/memory/ref_counted.h"
-#include "base/message_loop_proxy.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSupport.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperations.h"
-
-namespace WebKit {
-class WebGraphicsContext3D;
-}
-
-namespace webkit {
-
-class WebCompositorSupportImpl : public WebKit::WebCompositorSupport {
- public:
- WebCompositorSupportImpl();
- virtual ~WebCompositorSupportImpl();
-
- virtual WebKit::WebLayer* createLayer();
- virtual WebKit::WebContentLayer* createContentLayer(
- WebKit::WebContentLayerClient* client);
- virtual WebKit::WebExternalTextureLayer* createExternalTextureLayer(
- WebKit::WebExternalTextureLayerClient* client);
- virtual WebKit::WebExternalTextureLayer*
- createExternalTextureLayerForMailbox(
- WebKit::WebExternalTextureLayerClient* client);
- virtual WebKit::WebImageLayer* createImageLayer();
- virtual WebKit::WebSolidColorLayer* createSolidColorLayer();
- virtual WebKit::WebScrollbarLayer* createScrollbarLayer(
- WebKit::WebScrollbar* scrollbar,
- WebKit::WebScrollbarThemePainter painter,
- WebKit::WebScrollbarThemeGeometry*);
- virtual WebKit::WebAnimation* createAnimation(
- const WebKit::WebAnimationCurve& curve,
- WebKit::WebAnimation::TargetProperty target,
- int animation_id);
- virtual WebKit::WebFloatAnimationCurve* createFloatAnimationCurve();
- virtual WebKit::WebTransformAnimationCurve* createTransformAnimationCurve();
- virtual WebKit::WebTransformOperations* createTransformOperations();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(WebCompositorSupportImpl);
-};
-
-} // namespace webkit
-
-#endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_
« no previous file with comments | « webkit/compositor_bindings/web_animation_unittest.cc ('k') | webkit/compositor_bindings/web_compositor_support_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698