| 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 #include "webkit/compositor_bindings/web_compositor_support_impl.h" | 5 #include "webkit/compositor_bindings/web_compositor_support_impl.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/message_loop_proxy.h" | 8 #include "base/message_loop_proxy.h" |
| 9 #include "cc/output_surface.h" | 9 #include "cc/output_surface.h" |
| 10 #include "cc/software_output_device.h" | 10 #include "cc/software_output_device.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 using WebKit::WebAnimationCurve; | 29 using WebKit::WebAnimationCurve; |
| 30 using WebKit::WebContentLayer; | 30 using WebKit::WebContentLayer; |
| 31 using WebKit::WebContentLayerClient; | 31 using WebKit::WebContentLayerClient; |
| 32 using WebKit::WebExternalTextureLayer; | 32 using WebKit::WebExternalTextureLayer; |
| 33 using WebKit::WebExternalTextureLayerClient; | 33 using WebKit::WebExternalTextureLayerClient; |
| 34 using WebKit::WebFloatAnimationCurve; | 34 using WebKit::WebFloatAnimationCurve; |
| 35 using WebKit::WebIOSurfaceLayer; | 35 using WebKit::WebIOSurfaceLayer; |
| 36 using WebKit::WebImageLayer; | 36 using WebKit::WebImageLayer; |
| 37 using WebKit::WebImageLayer; | 37 using WebKit::WebImageLayer; |
| 38 using WebKit::WebLayer; | 38 using WebKit::WebLayer; |
| 39 using WebKit::WebLayerTreeView; | |
| 40 using WebKit::WebLayerTreeViewClient; | |
| 41 using WebKit::WebScrollbar; | 39 using WebKit::WebScrollbar; |
| 42 using WebKit::WebScrollbarLayer; | 40 using WebKit::WebScrollbarLayer; |
| 43 using WebKit::WebScrollbarThemeGeometry; | 41 using WebKit::WebScrollbarThemeGeometry; |
| 44 using WebKit::WebScrollbarThemePainter; | 42 using WebKit::WebScrollbarThemePainter; |
| 45 using WebKit::WebSolidColorLayer; | 43 using WebKit::WebSolidColorLayer; |
| 46 using WebKit::WebTransformAnimationCurve; | 44 using WebKit::WebTransformAnimationCurve; |
| 47 using WebKit::WebTransformOperations; | 45 using WebKit::WebTransformOperations; |
| 48 using WebKit::WebVideoFrameProvider; | 46 using WebKit::WebVideoFrameProvider; |
| 49 using WebKit::WebVideoLayer; | 47 using WebKit::WebVideoLayer; |
| 50 | 48 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 WebTransformAnimationCurve* | 142 WebTransformAnimationCurve* |
| 145 WebCompositorSupportImpl::createTransformAnimationCurve() { | 143 WebCompositorSupportImpl::createTransformAnimationCurve() { |
| 146 return new WebKit::WebTransformAnimationCurveImpl(); | 144 return new WebKit::WebTransformAnimationCurveImpl(); |
| 147 } | 145 } |
| 148 | 146 |
| 149 WebTransformOperations* WebCompositorSupportImpl::createTransformOperations() { | 147 WebTransformOperations* WebCompositorSupportImpl::createTransformOperations() { |
| 150 return new WebTransformOperationsImpl(); | 148 return new WebTransformOperationsImpl(); |
| 151 } | 149 } |
| 152 | 150 |
| 153 } // namespace webkit | 151 } // namespace webkit |
| OLD | NEW |