Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h

Issue 1601283003: DevTools: deoilpanize inspector/v8 and related classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h ('k') | third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698