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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 class InspectorBackendDispatcher; | 48 class InspectorBackendDispatcher; |
49 class InspectorAgent; | 49 class InspectorAgent; |
50 class InspectorClient; | 50 class InspectorClient; |
51 class InspectorDOMAgent; | 51 class InspectorDOMAgent; |
52 class InspectorFrontend; | 52 class InspectorFrontend; |
53 class InspectorFrontendChannel; | 53 class InspectorFrontendChannel; |
54 class InspectorFrontendClient; | 54 class InspectorFrontendClient; |
55 class InspectorLayerTreeAgent; | 55 class InspectorLayerTreeAgent; |
56 class InspectorPageAgent; | 56 class InspectorPageAgent; |
57 class InspectorTimelineAgent; | 57 class InspectorTimelineAgent; |
| 58 class InspectorTracingAgent; |
58 class InspectorOverlay; | 59 class InspectorOverlay; |
59 class InspectorState; | 60 class InspectorState; |
60 class InstrumentingAgents; | 61 class InstrumentingAgents; |
61 class IntPoint; | 62 class IntPoint; |
62 class IntSize; | 63 class IntSize; |
63 class Page; | 64 class Page; |
64 class PlatformGestureEvent; | 65 class PlatformGestureEvent; |
65 class PlatformKeyboardEvent; | 66 class PlatformKeyboardEvent; |
66 class PlatformMouseEvent; | 67 class PlatformMouseEvent; |
67 class PlatformTouchEvent; | 68 class PlatformTouchEvent; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 | 146 |
146 RefPtr<InstrumentingAgents> m_instrumentingAgents; | 147 RefPtr<InstrumentingAgents> m_instrumentingAgents; |
147 OwnPtr<InjectedScriptManager> m_injectedScriptManager; | 148 OwnPtr<InjectedScriptManager> m_injectedScriptManager; |
148 OwnPtr<InspectorCompositeState> m_state; | 149 OwnPtr<InspectorCompositeState> m_state; |
149 OwnPtr<InspectorOverlay> m_overlay; | 150 OwnPtr<InspectorOverlay> m_overlay; |
150 | 151 |
151 InspectorDOMAgent* m_domAgent; | 152 InspectorDOMAgent* m_domAgent; |
152 InspectorPageAgent* m_pageAgent; | 153 InspectorPageAgent* m_pageAgent; |
153 InspectorTimelineAgent* m_timelineAgent; | 154 InspectorTimelineAgent* m_timelineAgent; |
154 InspectorLayerTreeAgent* m_layerTreeAgent; | 155 InspectorLayerTreeAgent* m_layerTreeAgent; |
| 156 InspectorTracingAgent* m_tracingAgent; |
155 | 157 |
156 RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher; | 158 RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher; |
157 OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient; | 159 OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient; |
158 OwnPtr<InspectorFrontend> m_inspectorFrontend; | 160 OwnPtr<InspectorFrontend> m_inspectorFrontend; |
159 Page* m_page; | 161 Page* m_page; |
160 InspectorClient* m_inspectorClient; | 162 InspectorClient* m_inspectorClient; |
161 InspectorAgentRegistry m_agents; | 163 InspectorAgentRegistry m_agents; |
162 Vector<InspectorAgent*> m_moduleAgents; | 164 Vector<InspectorAgent*> m_moduleAgents; |
163 bool m_isUnderTest; | 165 bool m_isUnderTest; |
164 bool m_deferredAgentsInitialized; | 166 bool m_deferredAgentsInitialized; |
165 }; | 167 }; |
166 | 168 |
167 } | 169 } |
168 | 170 |
169 | 171 |
170 #endif // !defined(InspectorController_h) | 172 #endif // !defined(InspectorController_h) |
OLD | NEW |