OLD | NEW |
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 Loading... |
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 Loading... |
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) |
OLD | NEW |