| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 void initializeDeferredAgents(); | 137 void initializeDeferredAgents(); |
| 138 | 138 |
| 139 WebDevToolsAgentClient* m_client; | 139 WebDevToolsAgentClient* m_client; |
| 140 RawPtrWillBeMember<WebLocalFrameImpl> m_webLocalFrameImpl; | 140 RawPtrWillBeMember<WebLocalFrameImpl> m_webLocalFrameImpl; |
| 141 bool m_attached; | 141 bool m_attached; |
| 142 #if ENABLE(ASSERT) | 142 #if ENABLE(ASSERT) |
| 143 bool m_hasBeenDisposed; | 143 bool m_hasBeenDisposed; |
| 144 #endif | 144 #endif |
| 145 | 145 |
| 146 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; | 146 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
| 147 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; | 147 OwnPtr<InjectedScriptManager> m_injectedScriptManager; |
| 148 OwnPtrWillBeMember<InspectorResourceContentLoader> m_resourceContentLoader; | 148 OwnPtrWillBeMember<InspectorResourceContentLoader> m_resourceContentLoader; |
| 149 OwnPtrWillBeMember<InspectorCompositeState> m_state; | 149 OwnPtr<InspectorCompositeState> m_state; |
| 150 OwnPtrWillBeMember<InspectorOverlay> m_overlay; | 150 OwnPtrWillBeMember<InspectorOverlay> m_overlay; |
| 151 OwnPtrWillBeMember<InspectedFrames> m_inspectedFrames; | 151 OwnPtrWillBeMember<InspectedFrames> m_inspectedFrames; |
| 152 | 152 |
| 153 RawPtrWillBeMember<InspectorInspectorAgent> m_inspectorAgent; | 153 RawPtrWillBeMember<InspectorInspectorAgent> m_inspectorAgent; |
| 154 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; | 154 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; |
| 155 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; | 155 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; |
| 156 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; | 156 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; |
| 157 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; | 157 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; |
| 158 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; | 158 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; |
| 159 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent; | 159 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent; |
| 160 RawPtrWillBeMember<PageConsoleAgent> m_pageConsoleAgent; | 160 RawPtrWillBeMember<PageConsoleAgent> m_pageConsoleAgent; |
| 161 | 161 |
| 162 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; | 162 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; |
| 163 OwnPtr<InspectorFrontend> m_inspectorFrontend; | 163 OwnPtr<InspectorFrontend> m_inspectorFrontend; |
| 164 InspectorAgentRegistry m_agents; | 164 InspectorAgentRegistry m_agents; |
| 165 bool m_deferredAgentsInitialized; | 165 bool m_deferredAgentsInitialized; |
| 166 | 166 |
| 167 typedef Vector<std::pair<int, RefPtr<JSONObject>>> NotificationQueue; | 167 typedef Vector<std::pair<int, RefPtr<JSONObject>>> NotificationQueue; |
| 168 NotificationQueue m_notificationQueue; | 168 NotificationQueue m_notificationQueue; |
| 169 int m_sessionId; | 169 int m_sessionId; |
| 170 String m_stateCookie; | 170 String m_stateCookie; |
| 171 | 171 |
| 172 friend class DebuggerTask; | 172 friend class DebuggerTask; |
| 173 }; | 173 }; |
| 174 | 174 |
| 175 } // namespace blink | 175 } // namespace blink |
| 176 | 176 |
| 177 #endif | 177 #endif |
| OLD | NEW |