Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(351)

Unified Diff: WebCore/inspector/InspectorController.h

Issue 162045: Split InspectorBackend into three parts: backend, injected script host and frontend host.
Patch Set: Added missing JSInjectedScriptHostCustom.cpp file. Created 15 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « WebCore/inspector/InspectorBackend.idl ('k') | WebCore/inspector/InspectorController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/inspector/InspectorController.h
diff --git a/WebCore/inspector/InspectorController.h b/WebCore/inspector/InspectorController.h
index d3ea5719a2f8bf011cd2cc631d637585dd5a8883..6f261ec609773a798f53389d46a68caf01283b5c 100644
--- a/WebCore/inspector/InspectorController.h
+++ b/WebCore/inspector/InspectorController.h
@@ -62,10 +62,12 @@ class Document;
class DocumentLoader;
class GraphicsContext;
class HitTestResult;
+class InjectedScriptHost;
class InspectorBackend;
class InspectorClient;
class InspectorDOMAgent;
class InspectorFrontend;
+class InspectorFrontendHost;
class InspectorTimelineAgent;
class JavaScriptCallFrame;
class KURL;
@@ -166,6 +168,8 @@ public:
~InspectorController();
InspectorBackend* inspectorBackend() { return m_inspectorBackend.get(); }
+ InspectorFrontendHost* inspectorFrontendHost() { return m_inspectorFrontendHost.get(); }
+ InjectedScriptHost* injectedScriptHost() { return m_injectedScriptHost.get(); }
void inspectedPageDestroyed();
void pageDestroyed() { m_page = 0; }
@@ -294,6 +298,8 @@ public:
private:
friend class InspectorBackend;
+ friend class InspectorFrontendHost;
+ friend class InjectedScriptHost;
// Following are used from InspectorBackend and internally.
void scriptObjectReady();
void moveWindowBy(float x, float y) const;
@@ -387,6 +393,8 @@ private:
bool m_resourceTrackingEnabled;
bool m_resourceTrackingSettingsLoaded;
RefPtr<InspectorBackend> m_inspectorBackend;
+ RefPtr<InspectorFrontendHost> m_inspectorFrontendHost;
+ RefPtr<InjectedScriptHost> m_injectedScriptHost;
HashMap<String, ScriptValue> m_idToWrappedObject;
ObjectGroupsMap m_objectGroups;
« no previous file with comments | « WebCore/inspector/InspectorBackend.idl ('k') | WebCore/inspector/InspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b