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

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

Issue 620783002: Devtools Animations: Basic animation inspection & control in Styles pane (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 29 matching lines...) Expand all
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class ContextMenuProvider; 43 class ContextMenuProvider;
44 class LocalFrame; 44 class LocalFrame;
45 class GraphicsContext; 45 class GraphicsContext;
46 class GraphicsLayer; 46 class GraphicsLayer;
47 class InjectedScriptManager; 47 class InjectedScriptManager;
48 class InspectorBackendDispatcher; 48 class InspectorBackendDispatcher;
49 class InspectorAgent; 49 class InspectorAgent;
50 class InspectorAnimationAgent;
50 class InspectorClient; 51 class InspectorClient;
51 class InspectorCSSAgent; 52 class InspectorCSSAgent;
52 class InspectorDOMAgent; 53 class InspectorDOMAgent;
53 class InspectorFrontend; 54 class InspectorFrontend;
54 class InspectorFrontendChannel; 55 class InspectorFrontendChannel;
55 class InspectorFrontendClient; 56 class InspectorFrontendClient;
56 class InspectorLayerTreeAgent; 57 class InspectorLayerTreeAgent;
57 class InspectorPageAgent; 58 class InspectorPageAgent;
58 class InspectorResourceAgent; 59 class InspectorResourceAgent;
59 class InspectorTimelineAgent; 60 class InspectorTimelineAgent;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 OwnPtrWillBeMember<InspectorCompositeState> m_state; 147 OwnPtrWillBeMember<InspectorCompositeState> m_state;
147 OwnPtr<InspectorOverlay> m_overlay; 148 OwnPtr<InspectorOverlay> m_overlay;
148 149
149 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 150 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
150 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 151 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
151 RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent; 152 RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent;
152 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; 153 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent;
153 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; 154 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent;
154 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; 155 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent;
155 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; 156 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent;
157 RawPtrWillBeMember<InspectorAnimationAgent> m_animationAgent;
156 158
157 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; 159 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher;
158 InspectorFrontendClient* m_inspectorFrontendClient; 160 InspectorFrontendClient* m_inspectorFrontendClient;
159 OwnPtr<InspectorFrontend> m_inspectorFrontend; 161 OwnPtr<InspectorFrontend> m_inspectorFrontend;
160 RawPtrWillBeMember<Page> m_page; 162 RawPtrWillBeMember<Page> m_page;
161 InspectorClient* m_inspectorClient; 163 InspectorClient* m_inspectorClient;
162 InspectorAgentRegistry m_agents; 164 InspectorAgentRegistry m_agents;
163 bool m_isUnderTest; 165 bool m_isUnderTest;
164 bool m_deferredAgentsInitialized; 166 bool m_deferredAgentsInitialized;
165 String m_hostId; 167 String m_hostId;
166 }; 168 };
167 169
168 } 170 }
169 171
170 172
171 #endif // !defined(InspectorController_h) 173 #endif // !defined(InspectorController_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorAnimationAgent.cpp ('k') | Source/core/inspector/InspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698