| 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 AnimationNodeTiming_h | 5 #ifndef AnimationNodeTiming_h |
| 6 #define AnimationNodeTiming_h | 6 #define AnimationNodeTiming_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "core/animation/AnimationNode.h" | 9 #include "core/animation/AnimationNode.h" |
| 10 #include "wtf/RefCounted.h" | 10 #include "wtf/RefCounted.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 void setDelay(double); | 31 void setDelay(double); |
| 32 void setEndDelay(double); | 32 void setEndDelay(double); |
| 33 void setFill(String); | 33 void setFill(String); |
| 34 void setIterationStart(double); | 34 void setIterationStart(double); |
| 35 void setIterations(double); | 35 void setIterations(double); |
| 36 void setDuration(const UnrestrictedDoubleOrString&); | 36 void setDuration(const UnrestrictedDoubleOrString&); |
| 37 void setPlaybackRate(double); | 37 void setPlaybackRate(double); |
| 38 void setDirection(String); | 38 void setDirection(String); |
| 39 void setEasing(String); | 39 void setEasing(String); |
| 40 | 40 |
| 41 void trace(Visitor*); | 41 DECLARE_TRACE(); |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 RefPtrWillBeMember<AnimationNode> m_parent; | 44 RefPtrWillBeMember<AnimationNode> m_parent; |
| 45 explicit AnimationNodeTiming(AnimationNode*); | 45 explicit AnimationNodeTiming(AnimationNode*); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace blink | 48 } // namespace blink |
| 49 | 49 |
| 50 #endif | 50 #endif |
| OLD | NEW |