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 "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" | 8 #include "Source/Platform/chromium/public/WebLayer.h" |
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor
t.h" | 9 #include "Source/Platform/chromium/public/WebCompositorSupport.h" |
10 | 10 |
11 namespace webkit { | 11 namespace webkit { |
12 | 12 |
13 class WebCompositorSupportImpl : public WebKit::WebCompositorSupport { | 13 class WebCompositorSupportImpl : public WebKit::WebCompositorSupport { |
14 public: | 14 public: |
15 WebCompositorSupportImpl(); | 15 WebCompositorSupportImpl(); |
16 virtual ~WebCompositorSupportImpl(); | 16 virtual ~WebCompositorSupportImpl(); |
17 | 17 |
18 virtual WebKit::WebLayerTreeView* createLayerTreeView( | 18 virtual WebKit::WebLayerTreeView* createLayerTreeView( |
19 WebKit::WebLayerTreeViewClient* client, const WebKit::WebLayer& root, | 19 WebKit::WebLayerTreeViewClient* client, const WebKit::WebLayer& root, |
(...skipping 21 matching lines...) Expand all Loading... |
41 int animationId); | 41 int animationId); |
42 virtual WebKit::WebFloatAnimationCurve* | 42 virtual WebKit::WebFloatAnimationCurve* |
43 createFloatAnimationCurve(); | 43 createFloatAnimationCurve(); |
44 virtual WebKit::WebTransformAnimationCurve* | 44 virtual WebKit::WebTransformAnimationCurve* |
45 createTransformAnimationCurve(); | 45 createTransformAnimationCurve(); |
46 }; | 46 }; |
47 | 47 |
48 } // namespace webkit | 48 } // namespace webkit |
49 | 49 |
50 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ | 50 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
OLD | NEW |