| Index: third_party/WebKit/Source/core/animation/DocumentTimeline.h
|
| diff --git a/third_party/WebKit/Source/core/animation/DocumentTimeline.h b/third_party/WebKit/Source/core/animation/DocumentTimeline.h
|
| index 089ce86f0f9438a808d75455416072292d7f2fc0..59f41e35329a3bc4fadd4c77fc3df2232d42efc0 100644
|
| --- a/third_party/WebKit/Source/core/animation/DocumentTimeline.h
|
| +++ b/third_party/WebKit/Source/core/animation/DocumentTimeline.h
|
| @@ -34,8 +34,8 @@
|
| #include <memory>
|
| #include "core/CoreExport.h"
|
| #include "core/animation/AnimationEffectReadOnly.h"
|
| +#include "core/animation/AnimationTimeline.h"
|
| #include "core/animation/EffectModel.h"
|
| -#include "core/animation/SuperAnimationTimeline.h"
|
| #include "core/dom/Element.h"
|
| #include "core/dom/TaskRunnerHelper.h"
|
| #include "platform/Timer.h"
|
| @@ -53,7 +53,7 @@ class Document;
|
|
|
| // DocumentTimeline is constructed and owned by Document, and tied to its
|
| // lifecycle.
|
| -class CORE_EXPORT DocumentTimeline : public SuperAnimationTimeline {
|
| +class CORE_EXPORT DocumentTimeline : public AnimationTimeline {
|
| DEFINE_WRAPPERTYPEINFO();
|
|
|
| public:
|
| @@ -162,7 +162,7 @@ class CORE_EXPORT DocumentTimeline : public SuperAnimationTimeline {
|
| };
|
|
|
| DEFINE_TYPE_CASTS(DocumentTimeline,
|
| - SuperAnimationTimeline,
|
| + AnimationTimeline,
|
| timeline,
|
| timeline->IsDocumentTimeline(),
|
| timeline.IsDocumentTimeline());
|
|
|