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

Side by Side Diff: third_party/WebKit/Source/core/animation/SuperAnimationTimeline.h

Issue 2952093002: Rename SuperAnimationTimeline to AnimationTimeline (Closed)
Patch Set: Rebase Created 3 years, 5 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 | « third_party/WebKit/Source/core/animation/DocumentTimeline.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef SuperAnimationTimeline_h
2 #define SuperAnimationTimeline_h
3
4 #include "core/CoreExport.h"
5 #include "platform/bindings/ScriptWrappable.h"
6
7 namespace blink {
8
9 class CORE_EXPORT SuperAnimationTimeline
10 : public GarbageCollectedFinalized<SuperAnimationTimeline>,
11 public ScriptWrappable {
12 DEFINE_WRAPPERTYPEINFO();
13
14 public:
15 virtual ~SuperAnimationTimeline() {}
16
17 virtual double currentTime(bool&) = 0;
18
19 virtual bool IsDocumentTimeline() const { return false; }
20
21 DEFINE_INLINE_VIRTUAL_TRACE() {}
22 };
23
24 } // namespace blink
25
26 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/animation/DocumentTimeline.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698