summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/InspectorClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/InspectorClient.h')
-rw-r--r--WebCore/inspector/InspectorClient.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/WebCore/inspector/InspectorClient.h b/WebCore/inspector/InspectorClient.h
index bb71b13..0c78246 100644
--- a/WebCore/inspector/InspectorClient.h
+++ b/WebCore/inspector/InspectorClient.h
@@ -37,7 +37,7 @@ class Page;
class InspectorClient {
public:
- virtual ~InspectorClient() { }
+ virtual ~InspectorClient() { }
virtual void inspectorDestroyed() = 0;
@@ -55,6 +55,8 @@ public:
// However, there are some inspector controller states that should survive navigation (such as tracking resources
// or recording timeline). Following callbacks allow embedders to track these states.
virtual void updateInspectorStateCookie(const String&) { };
+
+ bool doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message);
};
} // namespace WebCore