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

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

Issue 2760363002: [instrumentation] Generalize instrumentation to be used beyond the core layer (Closed)
Patch Set: Created 3 years, 9 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 friend class WebDevToolsAgent; 141 friend class WebDevToolsAgent;
142 static void runDebuggerTask( 142 static void runDebuggerTask(
143 int sessionId, 143 int sessionId,
144 std::unique_ptr<WebDevToolsAgent::MessageDescriptor>); 144 std::unique_ptr<WebDevToolsAgent::MessageDescriptor>);
145 145
146 bool attached() const { return m_session.get(); } 146 bool attached() const { return m_session.get(); }
147 147
148 WebDevToolsAgentClient* m_client; 148 WebDevToolsAgentClient* m_client;
149 Member<WebLocalFrameImpl> m_webLocalFrameImpl; 149 Member<WebLocalFrameImpl> m_webLocalFrameImpl;
150 150
151 Member<InstrumentingAgents> m_instrumentingAgents; 151 Member<InspectorInstrumentationAgents> m_instrumentingAgents;
152 Member<InspectorResourceContentLoader> m_resourceContentLoader; 152 Member<InspectorResourceContentLoader> m_resourceContentLoader;
153 Member<InspectorOverlay> m_overlay; 153 Member<InspectorOverlay> m_overlay;
154 Member<InspectedFrames> m_inspectedFrames; 154 Member<InspectedFrames> m_inspectedFrames;
155 Member<InspectorResourceContainer> m_resourceContainer; 155 Member<InspectorResourceContainer> m_resourceContainer;
156 156
157 Member<InspectorDOMAgent> m_domAgent; 157 Member<InspectorDOMAgent> m_domAgent;
158 Member<InspectorPageAgent> m_pageAgent; 158 Member<InspectorPageAgent> m_pageAgent;
159 Member<InspectorNetworkAgent> m_networkAgent; 159 Member<InspectorNetworkAgent> m_networkAgent;
160 Member<InspectorLayerTreeAgent> m_layerTreeAgent; 160 Member<InspectorLayerTreeAgent> m_layerTreeAgent;
161 Member<InspectorTracingAgent> m_tracingAgent; 161 Member<InspectorTracingAgent> m_tracingAgent;
162 Member<InspectorTraceEvents> m_traceEventsAgent; 162 Member<InspectorTraceEvents> m_traceEventsAgent;
163 163
164 Member<InspectorSession> m_session; 164 Member<InspectorSession> m_session;
165 bool m_includeViewAgents; 165 bool m_includeViewAgents;
166 int m_layerTreeId; 166 int m_layerTreeId;
167 }; 167 };
168 168
169 } // namespace blink 169 } // namespace blink
170 170
171 #endif 171 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698