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

Unified Diff: third_party/WebKit/Source/core/animation/Animation.h

Issue 2952093002: Rename SuperAnimationTimeline to AnimationTimeline (Closed)
Patch Set: Rebase Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/Animation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/Animation.h
diff --git a/third_party/WebKit/Source/core/animation/Animation.h b/third_party/WebKit/Source/core/animation/Animation.h
index 9190f5eb91927912e8df857430a4327a4b0cd098..e072ecae40eb36573c048990036780ff29342e09 100644
--- a/third_party/WebKit/Source/core/animation/Animation.h
+++ b/third_party/WebKit/Source/core/animation/Animation.h
@@ -75,7 +75,7 @@ class CORE_EXPORT Animation final : public EventTargetWithInlineData,
kFinished
};
- static Animation* Create(AnimationEffectReadOnly*, SuperAnimationTimeline*);
+ static Animation* Create(AnimationEffectReadOnly*, AnimationTimeline*);
// Web Animations API IDL constructors.
static Animation* Create(ExecutionContext*,
@@ -83,7 +83,7 @@ class CORE_EXPORT Animation final : public EventTargetWithInlineData,
ExceptionState&);
static Animation* Create(ExecutionContext*,
AnimationEffectReadOnly*,
- SuperAnimationTimeline*,
+ AnimationTimeline*,
ExceptionState&);
~Animation();
@@ -139,8 +139,8 @@ class CORE_EXPORT Animation final : public EventTargetWithInlineData,
double playbackRate() const;
void setPlaybackRate(double);
- SuperAnimationTimeline* timeline() {
- return static_cast<SuperAnimationTimeline*>(timeline_);
+ AnimationTimeline* timeline() {
+ return static_cast<AnimationTimeline*>(timeline_);
}
const DocumentTimeline* TimelineInternal() const { return timeline_; }
DocumentTimeline* TimelineInternal() { return timeline_; }
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/Animation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698