| 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_FILTER_ANIMATION_CURVE_IMPL_H_ | 5 #ifndef CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ |
| 6 #define CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ | 6 #define CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "cc/blink/cc_blink_export.h" | 9 #include "cc/blink/cc_blink_export.h" |
| 10 #include "third_party/WebKit/public/platform/WebFilterAnimationCurve.h" | 10 #include "third_party/WebKit/public/platform/WebFilterAnimationCurve.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 CC_BLINK_EXPORT WebFilterAnimationCurveImpl(); | 25 CC_BLINK_EXPORT WebFilterAnimationCurveImpl(); |
| 26 virtual ~WebFilterAnimationCurveImpl(); | 26 virtual ~WebFilterAnimationCurveImpl(); |
| 27 | 27 |
| 28 // blink::WebCompositorAnimationCurve implementation. | 28 // blink::WebCompositorAnimationCurve implementation. |
| 29 virtual AnimationCurveType type() const; | 29 virtual AnimationCurveType type() const; |
| 30 | 30 |
| 31 // blink::WebFilterAnimationCurve implementation. | 31 // blink::WebFilterAnimationCurve implementation. |
| 32 virtual void add(const blink::WebFilterKeyframe& keyframe, | 32 virtual void add(const blink::WebFilterKeyframe& keyframe, |
| 33 TimingFunctionType type); | 33 TimingFunctionType type); |
| 34 virtual void add(const blink::WebFilterKeyframe& keyframe, | 34 virtual void add(const blink::WebFilterKeyframe& keyframe, |
| 35 int steps, |
| 36 bool steps_at_start); |
| 37 virtual void add(const blink::WebFilterKeyframe& keyframe, |
| 35 double x1, | 38 double x1, |
| 36 double y1, | 39 double y1, |
| 37 double x2, | 40 double x2, |
| 38 double y2); | 41 double y2); |
| 39 | 42 |
| 40 scoped_ptr<cc::AnimationCurve> CloneToAnimationCurve() const; | 43 scoped_ptr<cc::AnimationCurve> CloneToAnimationCurve() const; |
| 41 | 44 |
| 42 private: | 45 private: |
| 43 scoped_ptr<cc::KeyframedFilterAnimationCurve> curve_; | 46 scoped_ptr<cc::KeyframedFilterAnimationCurve> curve_; |
| 44 | 47 |
| 45 DISALLOW_COPY_AND_ASSIGN(WebFilterAnimationCurveImpl); | 48 DISALLOW_COPY_AND_ASSIGN(WebFilterAnimationCurveImpl); |
| 46 }; | 49 }; |
| 47 | 50 |
| 48 } // namespace cc_blink | 51 } // namespace cc_blink |
| 49 | 52 |
| 50 #endif // CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ | 53 #endif // CC_BLINK_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ |
| OLD | NEW |