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

Side by Side Diff: webkit/renderer/compositor_bindings/web_compositor_support_impl.cc

Issue 16514006: Update includes of message_loop_proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698