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

Side by Side Diff: cc/blink/web_compositor_support_impl.h

Issue 947033002: CC Animations: Establish AnimationHost, AnimationTimeline and AnimationPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move MutatorHostClient back to cc/trees/ Created 5 years, 5 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ 5 #ifndef CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_
6 #define CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ 6 #define CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "cc/blink/cc_blink_export.h" 10 #include "cc/blink/cc_blink_export.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 virtual blink::WebScrollOffsetAnimationCurve* 52 virtual blink::WebScrollOffsetAnimationCurve*
53 createScrollOffsetAnimationCurve( 53 createScrollOffsetAnimationCurve(
54 blink::WebFloatPoint target_value, 54 blink::WebFloatPoint target_value,
55 blink::WebCompositorAnimationCurve::TimingFunctionType 55 blink::WebCompositorAnimationCurve::TimingFunctionType
56 timing_function); 56 timing_function);
57 virtual blink::WebTransformAnimationCurve* createTransformAnimationCurve(); 57 virtual blink::WebTransformAnimationCurve* createTransformAnimationCurve();
58 virtual blink::WebTransformOperations* createTransformOperations(); 58 virtual blink::WebTransformOperations* createTransformOperations();
59 virtual blink::WebFilterOperations* createFilterOperations(); 59 virtual blink::WebFilterOperations* createFilterOperations();
60 virtual blink::WebDisplayItemList* createDisplayItemList(); 60 virtual blink::WebDisplayItemList* createDisplayItemList();
61 61
62 virtual blink::WebCompositorAnimationPlayer* createAnimationPlayer();
63 virtual blink::WebCompositorAnimationTimeline* createAnimationTimeline();
64
62 private: 65 private:
63 DISALLOW_COPY_AND_ASSIGN(WebCompositorSupportImpl); 66 DISALLOW_COPY_AND_ASSIGN(WebCompositorSupportImpl);
64 }; 67 };
65 68
66 } // namespace cc_blink 69 } // namespace cc_blink
67 70
68 #endif // CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ 71 #endif // CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698