summaryrefslogtreecommitdiffstats
path: root/WebKit/efl
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/efl')
-rw-r--r--WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp7
-rw-r--r--WebKit/efl/WebCoreSupport/InspectorClientEfl.h2
2 files changed, 9 insertions, 0 deletions
diff --git a/WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp b/WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp
index 8892d7f..2fa860a 100644
--- a/WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp
+++ b/WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp
@@ -58,4 +58,11 @@ void InspectorClientEfl::storeSetting(const String&, const String&)
notImplemented();
}
+bool InspectorClientEfl::sendMessageToFrontend(const String&)
+{
+ notImpelemented();
+ return false;
+}
+
+
}
diff --git a/WebKit/efl/WebCoreSupport/InspectorClientEfl.h b/WebKit/efl/WebCoreSupport/InspectorClientEfl.h
index 30c9caf..1ca646d 100644
--- a/WebKit/efl/WebCoreSupport/InspectorClientEfl.h
+++ b/WebKit/efl/WebCoreSupport/InspectorClientEfl.h
@@ -50,6 +50,8 @@ public:
virtual void populateSetting(const String& key, String* value);
virtual void storeSetting(const String& key, const String& value);
+
+ virtual bool sendMessageToFrontend(const String&);
};
}