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

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

Issue 11876016: Define cc::TransformOperations and webkit::WebTransformOperationsImpl (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Put TransformOperation into its own header Created 7 years, 11 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
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 #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 "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h"
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor t.h" 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositorSuppor t.h"
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperati ons.h"
11 12
12 namespace base { 13 namespace base {
13 class MessageLoopProxy; 14 class MessageLoopProxy;
14 } 15 }
15 16
16 namespace WebKit { 17 namespace WebKit {
17 class WebCompositorOutputSurface; 18 class WebCompositorOutputSurface;
18 class WebGraphicsContext3D; 19 class WebGraphicsContext3D;
19 } 20 }
20 21
(...skipping 30 matching lines...) Expand all
51 WebKit::WebScrollbarThemePainter painter, 52 WebKit::WebScrollbarThemePainter painter,
52 WebKit::WebScrollbarThemeGeometry*); 53 WebKit::WebScrollbarThemeGeometry*);
53 virtual WebKit::WebAnimation* createAnimation( 54 virtual WebKit::WebAnimation* createAnimation(
54 const WebKit::WebAnimationCurve& curve, 55 const WebKit::WebAnimationCurve& curve,
55 WebKit::WebAnimation::TargetProperty target, 56 WebKit::WebAnimation::TargetProperty target,
56 int animationId); 57 int animationId);
57 virtual WebKit::WebFloatAnimationCurve* 58 virtual WebKit::WebFloatAnimationCurve*
58 createFloatAnimationCurve(); 59 createFloatAnimationCurve();
59 virtual WebKit::WebTransformAnimationCurve* 60 virtual WebKit::WebTransformAnimationCurve*
60 createTransformAnimationCurve(); 61 createTransformAnimationCurve();
62 #if WEB_TRANSFORM_OPERATIONS_IS_VIRTUAL
63 virtual WebKit::WebTransformOperations*
64 createTransformOperations();
65 #endif
61 66
62 private: 67 private:
63 scoped_refptr<base::MessageLoopProxy> impl_thread_message_loop_proxy_; 68 scoped_refptr<base::MessageLoopProxy> impl_thread_message_loop_proxy_;
64 bool initialized_; 69 bool initialized_;
65 }; 70 };
66 71
67 } // namespace webkit 72 } // namespace webkit
68 73
69 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_ 74 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_COMPOSITOR_SUPPORT_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/compositor_bindings/compositor_bindings.gyp ('k') | webkit/compositor_bindings/web_compositor_support_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698