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

Side by Side Diff: Source/core/inspector/InspectorAnimationAgent.h

Issue 732803003: Clean up forward declarations in Source/core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 | « Source/core/html/HTMLFieldSetElement.h ('k') | Source/core/paint/FilterPainter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef InspectorAnimationAgent_h 5 #ifndef InspectorAnimationAgent_h
6 #define InspectorAnimationAgent_h 6 #define InspectorAnimationAgent_h
7 7
8 #include "core/InspectorFrontend.h" 8 #include "core/InspectorFrontend.h"
9 #include "core/css/CSSKeyframesRule.h" 9 #include "core/css/CSSKeyframesRule.h"
10 #include "core/inspector/InspectorBaseAgent.h" 10 #include "core/inspector/InspectorBaseAgent.h"
11 #include "wtf/PassOwnPtr.h" 11 #include "wtf/PassOwnPtr.h"
12 #include "wtf/text/WTFString.h" 12 #include "wtf/text/WTFString.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class Animation;
17 class AnimationNode; 16 class AnimationNode;
18 class AnimationPlayer; 17 class AnimationPlayer;
19 class Element; 18 class Element;
20 class InspectorDOMAgent; 19 class InspectorDOMAgent;
21 class StringKeyframe;
22 20
23 class InspectorAnimationAgent final : public InspectorBaseAgent<InspectorAnimati onAgent>, public InspectorBackendDispatcher::AnimationCommandHandler { 21 class InspectorAnimationAgent final : public InspectorBaseAgent<InspectorAnimati onAgent>, public InspectorBackendDispatcher::AnimationCommandHandler {
24 WTF_MAKE_NONCOPYABLE(InspectorAnimationAgent); 22 WTF_MAKE_NONCOPYABLE(InspectorAnimationAgent);
25 public: 23 public:
26 static PassOwnPtrWillBeRawPtr<InspectorAnimationAgent> create(InspectorDOMAg ent* domAgent) 24 static PassOwnPtrWillBeRawPtr<InspectorAnimationAgent> create(InspectorDOMAg ent* domAgent)
27 { 25 {
28 return adoptPtrWillBeNoop(new InspectorAnimationAgent(domAgent)); 26 return adoptPtrWillBeNoop(new InspectorAnimationAgent(domAgent));
29 } 27 }
30 28
31 // Base agent methods. 29 // Base agent methods.
(...skipping 21 matching lines...) Expand all
53 PassRefPtr<TypeBuilder::Array<TypeBuilder::Animation::AnimationPlayer> > bui ldArrayForAnimationPlayers(Element&, const WillBeHeapVector<RefPtrWillBeMember<A nimationPlayer> >); 51 PassRefPtr<TypeBuilder::Array<TypeBuilder::Animation::AnimationPlayer> > bui ldArrayForAnimationPlayers(Element&, const WillBeHeapVector<RefPtrWillBeMember<A nimationPlayer> >);
54 52
55 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 53 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
56 InspectorFrontend::Animation* m_frontend; 54 InspectorFrontend::Animation* m_frontend;
57 WillBeHeapHashMap<String, RefPtrWillBeMember<AnimationPlayer> > m_idToAnimat ionPlayer; 55 WillBeHeapHashMap<String, RefPtrWillBeMember<AnimationPlayer> > m_idToAnimat ionPlayer;
58 }; 56 };
59 57
60 } 58 }
61 59
62 #endif // InspectorAnimationAgent_h 60 #endif // InspectorAnimationAgent_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFieldSetElement.h ('k') | Source/core/paint/FilterPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698