| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef AnimationEffect_h | 31 #ifndef AnimationEffect_h |
| 32 #define AnimationEffect_h | 32 #define AnimationEffect_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/ScriptWrappable.h" | 34 #include "bindings/core/v8/ScriptWrappable.h" |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/animation/Timing.h" | 36 #include "core/animation/Timing.h" |
| 37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
| 38 #include "wtf/OwnPtr.h" | |
| 39 #include "wtf/PassOwnPtr.h" | |
| 40 #include "wtf/RefCounted.h" | |
| 41 | 38 |
| 42 namespace blink { | 39 namespace blink { |
| 43 | 40 |
| 44 class Animation; | 41 class Animation; |
| 45 class AnimationEffect; | 42 class AnimationEffect; |
| 46 class AnimationEffectTiming; | 43 class AnimationEffectTiming; |
| 47 class ComputedTimingProperties; | 44 class ComputedTimingProperties; |
| 48 | 45 |
| 49 enum TimingUpdateReason { | 46 enum TimingUpdateReason { |
| 50 TimingUpdateOnDemand, | 47 TimingUpdateOnDemand, |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 mutable bool m_needsUpdate; | 156 mutable bool m_needsUpdate; |
| 160 mutable double m_lastUpdateTime; | 157 mutable double m_lastUpdateTime; |
| 161 String m_name; | 158 String m_name; |
| 162 | 159 |
| 163 const CalculatedTiming& ensureCalculated() const; | 160 const CalculatedTiming& ensureCalculated() const; |
| 164 }; | 161 }; |
| 165 | 162 |
| 166 } // namespace blink | 163 } // namespace blink |
| 167 | 164 |
| 168 #endif // AnimationEffect_h | 165 #endif // AnimationEffect_h |
| OLD | NEW |