summaryrefslogtreecommitdiffstats
path: root/WebKit/qt/WebCoreSupport/InspectorClientQt.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/qt/WebCoreSupport/InspectorClientQt.h')
-rw-r--r--WebKit/qt/WebCoreSupport/InspectorClientQt.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebKit/qt/WebCoreSupport/InspectorClientQt.h b/WebKit/qt/WebCoreSupport/InspectorClientQt.h
index 0074159..64a2d0c 100644
--- a/WebKit/qt/WebCoreSupport/InspectorClientQt.h
+++ b/WebKit/qt/WebCoreSupport/InspectorClientQt.h
@@ -42,8 +42,10 @@ class QWebView;
namespace WebCore {
class InspectorFrontendClientQt;
+class InspectorServerRequestHandlerQt;
class Node;
class Page;
+class RemoteFrontendChannel;
class InspectorClientQt : public InspectorClient {
public:
@@ -63,10 +65,16 @@ public:
void releaseFrontendPage();
+ void attachAndReplaceRemoteFrontend(RemoteFrontendChannel *channel);
+ void detachRemoteFrontend();
+
private:
QWebPage* m_inspectedWebPage;
QWebPage* m_frontendWebPage;
InspectorFrontendClientQt* m_frontendClient;
+ bool m_remoteInspector;
+
+ friend class InspectorServerRequestHandlerQt;
};
class InspectorFrontendClientQt : public InspectorFrontendClientLocal {