| Index: Source/core/inspector/InspectorAnimationAgent.h
|
| diff --git a/Source/core/inspector/InspectorAnimationAgent.h b/Source/core/inspector/InspectorAnimationAgent.h
|
| index bdf7a15f33d789e2266fb6a8ac70f55e8fb913f7..8573f9dcabf0bf1a2e48a47badd65112078df5b6 100644
|
| --- a/Source/core/inspector/InspectorAnimationAgent.h
|
| +++ b/Source/core/inspector/InspectorAnimationAgent.h
|
| @@ -15,6 +15,7 @@ namespace blink {
|
|
|
| class AnimationNode;
|
| class AnimationPlayer;
|
| +class AnimationTimeline;
|
| class Element;
|
| class InspectorDOMAgent;
|
| class InspectorPageAgent;
|
| @@ -43,6 +44,7 @@ public:
|
| // API for InspectorInstrumentation
|
| void didCreateAnimationPlayer(AnimationPlayer*);
|
| void didCancelAnimationPlayer(AnimationPlayer*);
|
| + void didClearDocumentOfWindowObject(LocalFrame*);
|
|
|
| // API for InspectorFrontend
|
| virtual void enable(ErrorString*) override;
|
| @@ -60,6 +62,8 @@ private:
|
| PassRefPtr<TypeBuilder::Animation::AnimationPlayer> buildObjectForAnimationPlayer(AnimationPlayer&);
|
| PassRefPtr<TypeBuilder::Animation::AnimationPlayer> buildObjectForAnimationPlayer(AnimationPlayer&, AnimationType, PassRefPtr<TypeBuilder::Animation::KeyframesRule> keyframeRule = nullptr);
|
| PassRefPtr<TypeBuilder::Array<TypeBuilder::Animation::AnimationPlayer> > buildArrayForAnimationPlayers(Element&, const WillBeHeapVector<RefPtrWillBeMember<AnimationPlayer> >);
|
| + double normalizedStartTime(AnimationPlayer&);
|
| + AnimationTimeline& referenceTimeline();
|
|
|
| RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
|
| RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
|
|
|