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

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

Issue 1367623006: DevTools: extract V8DebuggerAgent interface, move it under .../inspector/v8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; 148 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent;
149 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; 149 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent;
150 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; 150 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent;
151 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; 151 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent;
152 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent; 152 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent;
153 RawPtrWillBeMember<PageConsoleAgent> m_pageConsoleAgent; 153 RawPtrWillBeMember<PageConsoleAgent> m_pageConsoleAgent;
154 154
155 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; 155 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher;
156 OwnPtr<InspectorFrontend> m_inspectorFrontend; 156 OwnPtr<InspectorFrontend> m_inspectorFrontend;
157 InspectorAgentRegistry m_agents; 157 InspectorAgentRegistry m_agents;
158 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker;
159 bool m_deferredAgentsInitialized; 158 bool m_deferredAgentsInitialized;
160 159
161 typedef Vector<RefPtr<JSONObject>> NotificationQueue; 160 typedef Vector<RefPtr<JSONObject>> NotificationQueue;
162 NotificationQueue m_notificationQueue; 161 NotificationQueue m_notificationQueue;
163 String m_stateCookie; 162 String m_stateCookie;
164 163
165 friend class DebuggerTask; 164 friend class DebuggerTask;
166 }; 165 };
167 166
168 } // namespace blink 167 } // namespace blink
169 168
170 #endif 169 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698