| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef SKY_VIEWER_CC_WEB_ANIMATION_IMPL_H_ |
| #define SKY_VIEWER_CC_WEB_ANIMATION_IMPL_H_ |
| |
| #include "base/memory/scoped_ptr.h" |
| #include "sky/viewer/cc/sky_viewer_cc_export.h" |
| #include "sky/engine/public/platform/WebCompositorAnimation.h" |
| |
| namespace cc { |
| class Animation; |
| } |
| |
| namespace blink { |
| class WebCompositorAnimationCurve; |
| } |
| |
| namespace sky_viewer_cc { |
| |
| class WebCompositorAnimationImpl : public blink::WebCompositorAnimation { |
| public: |
| SKY_VIEWER_CC_EXPORT WebCompositorAnimationImpl( |
| const blink::WebCompositorAnimationCurve& curve, |
| TargetProperty target, |
| int animation_id, |
| int group_id); |
| virtual ~WebCompositorAnimationImpl(); |
| |
| // blink::WebCompositorAnimation implementation |
| virtual int id(); |
| virtual TargetProperty targetProperty() const; |
| #if WEB_ANIMATION_SUPPORTS_FRACTIONAL_ITERATIONS |
| virtual double iterations() const; |
| virtual void setIterations(double iterations); |
| #else |
| virtual int iterations() const; |
| virtual void setIterations(int iterations); |
| #endif |
| virtual double startTime() const; |
| virtual void setStartTime(double monotonic_time); |
| virtual double timeOffset() const; |
| virtual void setTimeOffset(double monotonic_time); |
| #if WEB_ANIMATION_SUPPORTS_FULL_DIRECTION |
| virtual Direction direction() const; |
| virtual void setDirection(Direction); |
| #else |
| virtual bool alternatesDirection() const; |
| virtual void setAlternatesDirection(bool alternates); |
| #endif |
| virtual double playbackRate() const; |
| virtual void setPlaybackRate(double playback_rate); |
| |
| scoped_ptr<cc::Animation> PassAnimation(); |
| |
| private: |
| scoped_ptr<cc::Animation> animation_; |
| |
| DISALLOW_COPY_AND_ASSIGN(WebCompositorAnimationImpl); |
| }; |
| |
| } // namespace sky_viewer_cc |
| |
| #endif // SKY_VIEWER_CC_WEB_ANIMATION_IMPL_H_ |