Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: Source/core/animation/AnimationPlayer.h

Issue 984153002: Fix template angle bracket syntax in animation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/animation/Animation.cpp ('k') | Source/core/animation/AnimationStack.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/animation/Animation.cpp ('k') | Source/core/animation/AnimationStack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698