| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "web/InspectorEmulationAgent.h" | 42 #include "web/InspectorEmulationAgent.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 GraphicsLayer; | 49 class GraphicsLayer; |
| 50 class InspectedFrames; | 50 class InspectedFrames; |
| 51 class InspectorOverlay; | 51 class InspectorOverlay; |
| 52 class InspectorResourceContainer; |
| 52 class InspectorResourceContentLoader; | 53 class InspectorResourceContentLoader; |
| 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 V8InspectorSession; | 60 class V8InspectorSession; |
| 60 class WebDevToolsAgentClient; | 61 class WebDevToolsAgentClient; |
| 61 class WebFrameWidgetImpl; | 62 class WebFrameWidgetImpl; |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 Member<WebLocalFrameImpl> m_webLocalFrameImpl; | 146 Member<WebLocalFrameImpl> m_webLocalFrameImpl; |
| 146 bool m_attached; | 147 bool m_attached; |
| 147 #if DCHECK_IS_ON() | 148 #if DCHECK_IS_ON() |
| 148 bool m_hasBeenDisposed; | 149 bool m_hasBeenDisposed; |
| 149 #endif | 150 #endif |
| 150 | 151 |
| 151 Member<InstrumentingAgents> m_instrumentingAgents; | 152 Member<InstrumentingAgents> m_instrumentingAgents; |
| 152 Member<InspectorResourceContentLoader> m_resourceContentLoader; | 153 Member<InspectorResourceContentLoader> m_resourceContentLoader; |
| 153 Member<InspectorOverlay> m_overlay; | 154 Member<InspectorOverlay> m_overlay; |
| 154 Member<InspectedFrames> m_inspectedFrames; | 155 Member<InspectedFrames> m_inspectedFrames; |
| 156 Member<InspectorResourceContainer> m_resourceContainer; |
| 155 OwnPtr<V8InspectorSession> m_v8Session; | 157 OwnPtr<V8InspectorSession> m_v8Session; |
| 156 | 158 |
| 157 Member<InspectorDOMAgent> m_domAgent; | 159 Member<InspectorDOMAgent> m_domAgent; |
| 158 Member<InspectorPageAgent> m_pageAgent; | 160 Member<InspectorPageAgent> m_pageAgent; |
| 159 Member<InspectorResourceAgent> m_resourceAgent; | 161 Member<InspectorResourceAgent> m_resourceAgent; |
| 160 Member<InspectorLayerTreeAgent> m_layerTreeAgent; | 162 Member<InspectorLayerTreeAgent> m_layerTreeAgent; |
| 161 Member<InspectorTracingAgent> m_tracingAgent; | 163 Member<InspectorTracingAgent> m_tracingAgent; |
| 162 | 164 |
| 163 OwnPtr<protocol::Dispatcher> m_inspectorBackendDispatcher; | 165 OwnPtr<protocol::Dispatcher> m_inspectorBackendDispatcher; |
| 164 OwnPtr<protocol::Frontend> m_inspectorFrontend; | 166 OwnPtr<protocol::Frontend> m_inspectorFrontend; |
| 165 InspectorAgentRegistry m_agents; | 167 InspectorAgentRegistry m_agents; |
| 166 bool m_deferredAgentsInitialized; | 168 bool m_deferredAgentsInitialized; |
| 167 | 169 |
| 168 typedef Vector<std::pair<int, OwnPtr<protocol::Value>>> NotificationQueue; | 170 typedef Vector<std::pair<int, OwnPtr<protocol::Value>>> NotificationQueue; |
| 169 NotificationQueue m_notificationQueue; | 171 NotificationQueue m_notificationQueue; |
| 170 int m_sessionId; | 172 int m_sessionId; |
| 171 String m_stateCookie; | 173 String m_stateCookie; |
| 172 bool m_stateMuted; | 174 bool m_stateMuted; |
| 173 int m_layerTreeId; | 175 int m_layerTreeId; |
| 174 }; | 176 }; |
| 175 | 177 |
| 176 } // namespace blink | 178 } // namespace blink |
| 177 | 179 |
| 178 #endif | 180 #endif |
| OLD | NEW |