OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ | 5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ | 6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" | 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" |
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor
t.h" | 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor
t.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 virtual void shutdown(); | 30 virtual void shutdown(); |
31 virtual WebKit::WebLayerTreeView* createLayerTreeView( | 31 virtual WebKit::WebLayerTreeView* createLayerTreeView( |
32 WebKit::WebLayerTreeViewClient* client, const WebKit::WebLayer& root, | 32 WebKit::WebLayerTreeViewClient* client, const WebKit::WebLayer& root, |
33 const WebKit::WebLayerTreeView::Settings& settings); | 33 const WebKit::WebLayerTreeView::Settings& settings); |
34 virtual WebKit::WebCompositorOutputSurface* createOutputSurfaceFor3D( | 34 virtual WebKit::WebCompositorOutputSurface* createOutputSurfaceFor3D( |
35 WebKit::WebGraphicsContext3D* context); | 35 WebKit::WebGraphicsContext3D* context); |
36 virtual WebKit::WebCompositorOutputSurface* createOutputSurfaceForSoftware(); | 36 virtual WebKit::WebCompositorOutputSurface* createOutputSurfaceForSoftware(); |
37 virtual WebKit::WebLayer* createLayer(); | 37 virtual WebKit::WebLayer* createLayer(); |
38 virtual WebKit::WebContentLayer* createContentLayer( | 38 virtual WebKit::WebContentLayer* createContentLayer( |
39 WebKit::WebContentLayerClient* client); | 39 WebKit::WebContentLayerClient* client); |
40 virtual WebKit::WebDelegatedRendererLayer* createDelegatedRendererLayer(); | |
41 virtual WebKit::WebExternalTextureLayer* | 40 virtual WebKit::WebExternalTextureLayer* |
42 createExternalTextureLayer(WebKit::WebExternalTextureLayerClient* client); | 41 createExternalTextureLayer(WebKit::WebExternalTextureLayerClient* client); |
43 virtual WebKit::WebIOSurfaceLayer* | 42 virtual WebKit::WebIOSurfaceLayer* |
44 createIOSurfaceLayer(); | 43 createIOSurfaceLayer(); |
45 virtual WebKit::WebImageLayer* createImageLayer(); | 44 virtual WebKit::WebImageLayer* createImageLayer(); |
46 virtual WebKit::WebSolidColorLayer* | 45 virtual WebKit::WebSolidColorLayer* |
47 createSolidColorLayer(); | 46 createSolidColorLayer(); |
48 virtual WebKit::WebVideoLayer* | 47 virtual WebKit::WebVideoLayer* |
49 createVideoLayer(WebKit::WebVideoFrameProvider*); | 48 createVideoLayer(WebKit::WebVideoFrameProvider*); |
50 virtual WebKit::WebScrollbarLayer* createScrollbarLayer( | 49 virtual WebKit::WebScrollbarLayer* createScrollbarLayer( |
(...skipping 10 matching lines...) Expand all Loading... |
61 createTransformAnimationCurve(); | 60 createTransformAnimationCurve(); |
62 | 61 |
63 private: | 62 private: |
64 scoped_refptr<base::MessageLoopProxy> impl_thread_message_loop_proxy_; | 63 scoped_refptr<base::MessageLoopProxy> impl_thread_message_loop_proxy_; |
65 bool initialized_; | 64 bool initialized_; |
66 }; | 65 }; |
67 | 66 |
68 } // namespace webkit | 67 } // namespace webkit |
69 | 68 |
70 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ | 69 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
OLD | NEW |