| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 void beginUpdatingState(); | 183 void beginUpdatingState(); |
| 184 void endUpdatingState(); | 184 void endUpdatingState(); |
| 185 | 185 |
| 186 AnimationPlayState m_playState; | 186 AnimationPlayState m_playState; |
| 187 double m_playbackRate; | 187 double m_playbackRate; |
| 188 double m_startTime; | 188 double m_startTime; |
| 189 double m_holdTime; | 189 double m_holdTime; |
| 190 | 190 |
| 191 unsigned m_sequenceNumber; | 191 unsigned m_sequenceNumber; |
| 192 | 192 |
| 193 typedef ScriptPromiseProperty<RawPtrWillBeMember<AnimationPlayer>, RawPtrWil
lBeMember<AnimationPlayer>, RefPtrWillBeMember<DOMException> > AnimationPlayerPr
omise; | 193 typedef ScriptPromiseProperty<RawPtrWillBeMember<AnimationPlayer>, RawPtrWil
lBeMember<AnimationPlayer>, RefPtrWillBeMember<DOMException>> AnimationPlayerPro
mise; |
| 194 PersistentWillBeMember<AnimationPlayerPromise> m_finishedPromise; | 194 PersistentWillBeMember<AnimationPlayerPromise> m_finishedPromise; |
| 195 PersistentWillBeMember<AnimationPlayerPromise> m_readyPromise; | 195 PersistentWillBeMember<AnimationPlayerPromise> m_readyPromise; |
| 196 | 196 |
| 197 RefPtrWillBeMember<AnimationNode> m_content; | 197 RefPtrWillBeMember<AnimationNode> m_content; |
| 198 RawPtrWillBeMember<AnimationTimeline> m_timeline; | 198 RawPtrWillBeMember<AnimationTimeline> m_timeline; |
| 199 // Reflects all pausing, including via pauseForTesting(). | 199 // Reflects all pausing, including via pauseForTesting(). |
| 200 bool m_paused; | 200 bool m_paused; |
| 201 bool m_held; | 201 bool m_held; |
| 202 bool m_isPausedForTesting; | 202 bool m_isPausedForTesting; |
| 203 | 203 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 int m_compositorGroup; | 259 int m_compositorGroup; |
| 260 | 260 |
| 261 bool m_currentTimePending; | 261 bool m_currentTimePending; |
| 262 bool m_stateIsBeingUpdated; | 262 bool m_stateIsBeingUpdated; |
| 263 | 263 |
| 264 }; | 264 }; |
| 265 | 265 |
| 266 } // namespace blink | 266 } // namespace blink |
| 267 | 267 |
| 268 #endif // AnimationPlayer_h | 268 #endif // AnimationPlayer_h |
| OLD | NEW |