| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |