| 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/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "cc/blink/cc_blink_export.h" | 10 #include "cc/blink/cc_blink_export.h" |
| 11 #include "third_party/WebKit/public/platform/WebCompositorAnimationCurve.h" | 11 #include "third_party/WebKit/public/platform/WebCompositorAnimationCurve.h" |
| 12 #include "third_party/WebKit/public/platform/WebCompositorSupport.h" | 12 #include "third_party/WebKit/public/platform/WebCompositorSupport.h" |
| 13 #include "third_party/WebKit/public/platform/WebContentLayerClient.h" | 13 #include "third_party/WebKit/public/platform/WebContentLayerClient.h" |
| 14 #include "third_party/WebKit/public/platform/WebLayer.h" | 14 #include "third_party/WebKit/public/platform/WebLayer.h" |
| 15 #include "third_party/WebKit/public/platform/WebTransformOperations.h" | 15 #include "third_party/WebKit/public/platform/WebTransformOperations.h" |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 class WebGraphicsContext3D; | 18 class WebGraphicsContext3D; |
| 19 class WebMutator; |
| 20 class WebMutatorClient; |
| 19 } | 21 } |
| 20 | 22 |
| 21 namespace cc_blink { | 23 namespace cc_blink { |
| 22 | 24 |
| 23 class CC_BLINK_EXPORT WebCompositorSupportImpl | 25 class CC_BLINK_EXPORT WebCompositorSupportImpl |
| 24 : public NON_EXPORTED_BASE(blink::WebCompositorSupport) { | 26 : public NON_EXPORTED_BASE(blink::WebCompositorSupport) { |
| 25 public: | 27 public: |
| 26 WebCompositorSupportImpl(); | 28 WebCompositorSupportImpl(); |
| 27 ~WebCompositorSupportImpl() override; | 29 ~WebCompositorSupportImpl() override; |
| 28 | 30 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 50 blink::WebFilterAnimationCurve* createFilterAnimationCurve() override; | 52 blink::WebFilterAnimationCurve* createFilterAnimationCurve() override; |
| 51 blink::WebFloatAnimationCurve* createFloatAnimationCurve() override; | 53 blink::WebFloatAnimationCurve* createFloatAnimationCurve() override; |
| 52 blink::WebScrollOffsetAnimationCurve* createScrollOffsetAnimationCurve( | 54 blink::WebScrollOffsetAnimationCurve* createScrollOffsetAnimationCurve( |
| 53 blink::WebFloatPoint target_value, | 55 blink::WebFloatPoint target_value, |
| 54 blink::WebCompositorAnimationCurve::TimingFunctionType timing_function, | 56 blink::WebCompositorAnimationCurve::TimingFunctionType timing_function, |
| 55 blink::WebScrollOffsetAnimationCurve::ScrollDurationBehavior | 57 blink::WebScrollOffsetAnimationCurve::ScrollDurationBehavior |
| 56 duration_behavior) override; | 58 duration_behavior) override; |
| 57 blink::WebTransformAnimationCurve* createTransformAnimationCurve() override; | 59 blink::WebTransformAnimationCurve* createTransformAnimationCurve() override; |
| 58 blink::WebTransformOperations* createTransformOperations() override; | 60 blink::WebTransformOperations* createTransformOperations() override; |
| 59 blink::WebFilterOperations* createFilterOperations() override; | 61 blink::WebFilterOperations* createFilterOperations() override; |
| 62 blink::WebMutatorClient* createMutatorClient( |
| 63 blink::WebMutator* mutator) override; |
| 60 | 64 |
| 61 blink::WebCompositorAnimationPlayer* createAnimationPlayer() override; | 65 blink::WebCompositorAnimationPlayer* createAnimationPlayer() override; |
| 62 blink::WebCompositorAnimationTimeline* createAnimationTimeline() override; | 66 blink::WebCompositorAnimationTimeline* createAnimationTimeline() override; |
| 63 | 67 |
| 64 private: | 68 private: |
| 65 DISALLOW_COPY_AND_ASSIGN(WebCompositorSupportImpl); | 69 DISALLOW_COPY_AND_ASSIGN(WebCompositorSupportImpl); |
| 66 }; | 70 }; |
| 67 | 71 |
| 68 } // namespace cc_blink | 72 } // namespace cc_blink |
| 69 | 73 |
| 70 #endif // CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ | 74 #endif // CC_BLINK_WEB_COMPOSITOR_SUPPORT_IMPL_H_ |
| OLD | NEW |