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

Unified Diff: Source/core/inspector/InspectorController.h

Issue 338993006: DevTools: pass agent host id to the renderer (Blink). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Same w/ reattach. Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/inspector/InspectorController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorController.h
diff --git a/Source/core/inspector/InspectorController.h b/Source/core/inspector/InspectorController.h
index 8fdffd46864231a19475fe22cd345614ac4a8b12..85932ae4a024038511c62d135eb5febeeb209fde 100644
--- a/Source/core/inspector/InspectorController.h
+++ b/Source/core/inspector/InspectorController.h
@@ -54,6 +54,7 @@ class InspectorFrontendChannel;
class InspectorFrontendClient;
class InspectorLayerTreeAgent;
class InspectorPageAgent;
+class InspectorResourceAgent;
class InspectorTimelineAgent;
class InspectorTracingAgent;
class InspectorOverlay;
@@ -89,10 +90,10 @@ public:
void dispatchMessageFromFrontend(const String& message);
- void connectFrontend(InspectorFrontendChannel*);
+ void connectFrontend(const String& hostId, InspectorFrontendChannel*);
void disconnectFrontend();
void reconnectFrontend();
- void reuseFrontend(InspectorFrontendChannel*, const String& inspectorStateCookie);
+ void reuseFrontend(const String& hostId, InspectorFrontendChannel*, const String& inspectorStateCookie);
void setProcessId(long);
void setLayerTreeId(int);
@@ -145,6 +146,7 @@ private:
InspectorDOMAgent* m_domAgent;
InspectorPageAgent* m_pageAgent;
+ InspectorResourceAgent* m_resourceAgent;
InspectorTimelineAgent* m_timelineAgent;
InspectorLayerTreeAgent* m_layerTreeAgent;
InspectorTracingAgent* m_tracingAgent;
@@ -158,6 +160,7 @@ private:
Vector<InspectorAgent*> m_moduleAgents;
bool m_isUnderTest;
bool m_deferredAgentsInitialized;
+ String m_hostId;
};
}
« no previous file with comments | « no previous file | Source/core/inspector/InspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698