| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RENDERER_COMPOSITOR_BINDINGS_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_COMPOSITOR_BINDINGS_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ |
| 6 #define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ | 6 #define CONTENT_RENDERER_COMPOSITOR_BINDINGS_WEB_FILTER_ANIMATION_CURVE_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "content/common/content_export.h" |
| 9 #include "third_party/WebKit/public/platform/WebFilterAnimationCurve.h" | 10 #include "third_party/WebKit/public/platform/WebFilterAnimationCurve.h" |
| 10 #include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.
h" | |
| 11 | 11 |
| 12 namespace cc { | 12 namespace cc { |
| 13 class AnimationCurve; | 13 class AnimationCurve; |
| 14 class KeyframedFilterAnimationCurve; | 14 class KeyframedFilterAnimationCurve; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace blink { class WebFilterKeyframe; } | 17 namespace blink { |
| 18 class WebFilterKeyframe; |
| 19 } |
| 18 | 20 |
| 19 namespace webkit { | 21 namespace content { |
| 20 | 22 |
| 21 class WebFilterAnimationCurveImpl | 23 class WebFilterAnimationCurveImpl : public blink::WebFilterAnimationCurve { |
| 22 : public blink::WebFilterAnimationCurve { | |
| 23 public: | 24 public: |
| 24 WEBKIT_COMPOSITOR_BINDINGS_EXPORT WebFilterAnimationCurveImpl(); | 25 CONTENT_EXPORT WebFilterAnimationCurveImpl(); |
| 25 virtual ~WebFilterAnimationCurveImpl(); | 26 virtual ~WebFilterAnimationCurveImpl(); |
| 26 | 27 |
| 27 // blink::WebAnimationCurve implementation. | 28 // blink::WebAnimationCurve implementation. |
| 28 virtual AnimationCurveType type() const; | 29 virtual AnimationCurveType type() const; |
| 29 | 30 |
| 30 // blink::WebFilterAnimationCurve implementation. | 31 // blink::WebFilterAnimationCurve implementation. |
| 31 virtual void add(const blink::WebFilterKeyframe& keyframe, | 32 virtual void add(const blink::WebFilterKeyframe& keyframe, |
| 32 TimingFunctionType type); | 33 TimingFunctionType type); |
| 33 virtual void add(const blink::WebFilterKeyframe& keyframe, | 34 virtual void add(const blink::WebFilterKeyframe& keyframe, |
| 34 double x1, | 35 double x1, |
| 35 double y1, | 36 double y1, |
| 36 double x2, | 37 double x2, |
| 37 double y2); | 38 double y2); |
| 38 | 39 |
| 39 scoped_ptr<cc::AnimationCurve> CloneToAnimationCurve() const; | 40 scoped_ptr<cc::AnimationCurve> CloneToAnimationCurve() const; |
| 40 | 41 |
| 41 private: | 42 private: |
| 42 scoped_ptr<cc::KeyframedFilterAnimationCurve> curve_; | 43 scoped_ptr<cc::KeyframedFilterAnimationCurve> curve_; |
| 43 | 44 |
| 44 DISALLOW_COPY_AND_ASSIGN(WebFilterAnimationCurveImpl); | 45 DISALLOW_COPY_AND_ASSIGN(WebFilterAnimationCurveImpl); |
| 45 }; | 46 }; |
| 46 | 47 |
| 47 } // namespace webkit | 48 } // namespace content |
| 48 | 49 |
| 49 #endif // WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_FILTER_ANIMATION_CURVE_IMPL_H
_ | 50 #endif // CONTENT_RENDERER_COMPOSITOR_BINDINGS_WEB_FILTER_ANIMATION_CURVE_IMPL_
H_ |
| OLD | NEW |