| 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/renderer/compositor_bindings/web_compositor_support_impl.h" | 5 #include "webkit/renderer/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/message_loop_proxy.h" |
| 9 #include "cc/animation/transform_operations.h" | 9 #include "cc/animation/transform_operations.h" |
| 10 #include "cc/base/thread_impl.h" | 10 #include "cc/base/thread_impl.h" |
| 11 #include "cc/output/output_surface.h" | 11 #include "cc/output/output_surface.h" |
| 12 #include "cc/output/software_output_device.h" | 12 #include "cc/output/software_output_device.h" |
| 13 #include "webkit/glue/webthread_impl.h" | 13 #include "webkit/glue/webthread_impl.h" |
| 14 #include "webkit/renderer/compositor_bindings/web_animation_impl.h" | 14 #include "webkit/renderer/compositor_bindings/web_animation_impl.h" |
| 15 #include "webkit/renderer/compositor_bindings/web_content_layer_impl.h" | 15 #include "webkit/renderer/compositor_bindings/web_content_layer_impl.h" |
| 16 #include "webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h" | 16 #include "webkit/renderer/compositor_bindings/web_external_texture_layer_impl.h" |
| 17 #include "webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h" | 17 #include "webkit/renderer/compositor_bindings/web_float_animation_curve_impl.h" |
| 18 #include "webkit/renderer/compositor_bindings/web_image_layer_impl.h" | 18 #include "webkit/renderer/compositor_bindings/web_image_layer_impl.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 WebTransformAnimationCurve* | 94 WebTransformAnimationCurve* |
| 95 WebCompositorSupportImpl::createTransformAnimationCurve() { | 95 WebCompositorSupportImpl::createTransformAnimationCurve() { |
| 96 return new WebTransformAnimationCurveImpl(); | 96 return new WebTransformAnimationCurveImpl(); |
| 97 } | 97 } |
| 98 | 98 |
| 99 WebTransformOperations* WebCompositorSupportImpl::createTransformOperations() { | 99 WebTransformOperations* WebCompositorSupportImpl::createTransformOperations() { |
| 100 return new WebTransformOperationsImpl(); | 100 return new WebTransformOperationsImpl(); |
| 101 } | 101 } |
| 102 | 102 |
| 103 } // namespace webkit | 103 } // namespace webkit |
| OLD | NEW |