summaryrefslogtreecommitdiffstats
path: root/chrome/browser/web_contents.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/web_contents.cc')
-rw-r--r--chrome/browser/web_contents.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/web_contents.cc b/chrome/browser/web_contents.cc
index 32b1ecd..96834dc 100644
--- a/chrome/browser/web_contents.cc
+++ b/chrome/browser/web_contents.cc
@@ -1988,6 +1988,12 @@ void WebContents::DomOperationResponse(const std::string& json_string,
Details<DomOperationNotificationDetails>(&details));
}
+void WebContents::ProcessExternalHostMessage(const std::string& receiver,
+ const std::string& message) {
+ if (delegate())
+ delegate()->SendExternalHostMessage(receiver, message);
+}
+
void WebContents::GoToEntryAtOffset(int offset) {
if (!controller())
return;