| Index: Source/core/inspector/InspectorAnimationAgent.h
 | 
| diff --git a/Source/core/inspector/InspectorAnimationAgent.h b/Source/core/inspector/InspectorAnimationAgent.h
 | 
| index 5f0fcb63a68320888866bc05f7999ef3ffe82efe..87016da4de0cb3e946d39d1e1fabf31cac36f220 100644
 | 
| --- a/Source/core/inspector/InspectorAnimationAgent.h
 | 
| +++ b/Source/core/inspector/InspectorAnimationAgent.h
 | 
| @@ -6,6 +6,7 @@
 | 
|  #define InspectorAnimationAgent_h
 | 
|  
 | 
|  #include "core/InspectorFrontend.h"
 | 
| +#include "core/css/CSSKeyframesRule.h"
 | 
|  #include "core/inspector/InspectorBaseAgent.h"
 | 
|  #include "wtf/PassOwnPtr.h"
 | 
|  #include "wtf/text/WTFString.h"
 | 
| @@ -14,6 +15,7 @@ namespace blink {
 | 
|  
 | 
|  class AnimationNode;
 | 
|  class AnimationPlayer;
 | 
| +class Element;
 | 
|  class InspectorDOMAgent;
 | 
|  
 | 
|  class InspectorAnimationAgent final : public InspectorBaseAgent<InspectorAnimationAgent>, public InspectorBackendDispatcher::AnimationCommandHandler {
 | 
| @@ -44,11 +46,6 @@ public:
 | 
|  private:
 | 
|      InspectorAnimationAgent(InspectorDOMAgent*);
 | 
|  
 | 
| -    String playerId(AnimationPlayer&);
 | 
| -
 | 
| -    PassRefPtr<TypeBuilder::Animation::AnimationPlayer> buildObjectForAnimationPlayer(AnimationPlayer&);
 | 
| -    PassRefPtr<TypeBuilder::Animation::AnimationNode> buildObjectForAnimationNode(AnimationNode&);
 | 
| -
 | 
|      RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
 | 
|      InspectorFrontend::Animation* m_frontend;
 | 
|      WillBeHeapHashMap<String, RefPtrWillBeMember<AnimationPlayer> > m_idToAnimationPlayer;
 | 
| 
 |