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

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

Issue 12226051: Clean up RenderWidget/RenderWidgetCompositor/WebKit interactions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: just diff relative to https://codereview.chromium.org/12377029/ Created 7 years, 9 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/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/thread_impl.h" 10 #include "cc/thread_impl.h"
(...skipping 18 matching lines...) Expand all
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 WebTransformAnimationCurve* 143 WebTransformAnimationCurve*
146 WebCompositorSupportImpl::createTransformAnimationCurve() { 144 WebCompositorSupportImpl::createTransformAnimationCurve() {
147 return new WebKit::WebTransformAnimationCurveImpl(); 145 return new WebKit::WebTransformAnimationCurveImpl();
148 } 146 }
149 147
150 WebTransformOperations* WebCompositorSupportImpl::createTransformOperations() { 148 WebTransformOperations* WebCompositorSupportImpl::createTransformOperations() {
151 return new WebTransformOperationsImpl(); 149 return new WebTransformOperationsImpl();
152 } 150 }
153 151
154 } // namespace webkit 152 } // namespace webkit
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698