| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 30 matching lines...) Expand all Loading... |
| 41 #include "public/platform/WebThread.h" | 41 #include "public/platform/WebThread.h" |
| 42 #include "public/web/WebDevToolsAgent.h" | 42 #include "public/web/WebDevToolsAgent.h" |
| 43 #include "wtf/Forward.h" | 43 #include "wtf/Forward.h" |
| 44 #include "wtf/OwnPtr.h" | 44 #include "wtf/OwnPtr.h" |
| 45 #include "wtf/Vector.h" | 45 #include "wtf/Vector.h" |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 class DebuggerTask; | 49 class DebuggerTask; |
| 50 class GraphicsLayer; | 50 class GraphicsLayer; |
| 51 class InspectorInspectorAgent; |
| 51 class InspectorOverlay; | 52 class InspectorOverlay; |
| 52 class InspectorPageAgent; | 53 class InspectorPageAgent; |
| 53 class LocalFrame; | 54 class LocalFrame; |
| 54 class Page; | 55 class Page; |
| 55 class PlatformGestureEvent; | 56 class PlatformGestureEvent; |
| 56 class PlatformKeyboardEvent; | 57 class PlatformKeyboardEvent; |
| 57 class PlatformMouseEvent; | 58 class PlatformMouseEvent; |
| 58 class PlatformTouchEvent; | 59 class PlatformTouchEvent; |
| 59 class WebDevToolsAgentClient; | 60 class WebDevToolsAgentClient; |
| 60 class WebFrameWidgetImpl; | 61 class WebFrameWidgetImpl; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 bool m_hasBeenDisposed; | 135 bool m_hasBeenDisposed; |
| 135 #endif | 136 #endif |
| 136 | 137 |
| 137 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; | 138 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
| 138 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; | 139 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 139 OwnPtrWillBeMember<InspectorCompositeState> m_state; | 140 OwnPtrWillBeMember<InspectorCompositeState> m_state; |
| 140 RawPtrWillBeMember<InspectorOverlay> m_overlay; | 141 RawPtrWillBeMember<InspectorOverlay> m_overlay; |
| 141 OwnPtr<InspectorInputAgent::Client> m_inputClient; | 142 OwnPtr<InspectorInputAgent::Client> m_inputClient; |
| 142 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; | 143 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; |
| 143 | 144 |
| 145 RawPtrWillBeMember<InspectorInspectorAgent> m_inspectorAgent; |
| 144 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; | 146 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; |
| 145 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; | 147 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; |
| 146 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; | 148 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; |
| 147 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; | 149 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; |
| 148 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; | 150 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; |
| 149 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; | 151 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; |
| 150 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent; | 152 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent; |
| 151 | 153 |
| 152 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; | 154 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; |
| 153 OwnPtr<InspectorFrontend> m_inspectorFrontend; | 155 OwnPtr<InspectorFrontend> m_inspectorFrontend; |
| 154 InspectorAgentRegistry m_agents; | 156 InspectorAgentRegistry m_agents; |
| 155 bool m_deferredAgentsInitialized; | 157 bool m_deferredAgentsInitialized; |
| 156 | 158 |
| 157 typedef Vector<RefPtr<JSONObject>> NotificationQueue; | 159 typedef Vector<RefPtr<JSONObject>> NotificationQueue; |
| 158 NotificationQueue m_notificationQueue; | 160 NotificationQueue m_notificationQueue; |
| 159 String m_stateCookie; | 161 String m_stateCookie; |
| 160 | 162 |
| 161 friend class DebuggerTask; | 163 friend class DebuggerTask; |
| 162 }; | 164 }; |
| 163 | 165 |
| 164 } // namespace blink | 166 } // namespace blink |
| 165 | 167 |
| 166 #endif | 168 #endif |
| OLD | NEW |