| 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 AnimationEffectTiming_h | 5 #ifndef AnimationEffectTiming_h |
| 6 #define AnimationEffectTiming_h | 6 #define AnimationEffectTiming_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 10 #include "core/animation/AnimationEffect.h" | 10 #include "core/animation/AnimationEffect.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 double iterationStart(); | 25 double iterationStart(); |
| 26 double iterations(); | 26 double iterations(); |
| 27 void duration(UnrestrictedDoubleOrString&); | 27 void duration(UnrestrictedDoubleOrString&); |
| 28 double playbackRate(); | 28 double playbackRate(); |
| 29 String direction(); | 29 String direction(); |
| 30 String easing(); | 30 String easing(); |
| 31 | 31 |
| 32 void setDelay(double); | 32 void setDelay(double); |
| 33 void setEndDelay(double); | 33 void setEndDelay(double); |
| 34 void setFill(String); | 34 void setFill(String); |
| 35 void setIterationStart(double); | 35 void setIterationStart(double, ExceptionState&); |
| 36 void setIterations(double); | 36 void setIterations(double, ExceptionState&); |
| 37 void setDuration(const UnrestrictedDoubleOrString&); | 37 void setDuration(const UnrestrictedDoubleOrString&, ExceptionState&); |
| 38 void setPlaybackRate(double); | 38 void setPlaybackRate(double); |
| 39 void setDirection(String); | 39 void setDirection(String); |
| 40 void setEasing(String, ExceptionState&); | 40 void setEasing(String, ExceptionState&); |
| 41 | 41 |
| 42 DECLARE_TRACE(); | 42 DECLARE_TRACE(); |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 Member<AnimationEffect> m_parent; | 45 Member<AnimationEffect> m_parent; |
| 46 explicit AnimationEffectTiming(AnimationEffect*); | 46 explicit AnimationEffectTiming(AnimationEffect*); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace blink | 49 } // namespace blink |
| 50 | 50 |
| 51 #endif | 51 #endif |
| OLD | NEW |