diff options
author | joshia@google.com <joshia@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-15 20:12:42 +0000 |
---|---|---|
committer | joshia@google.com <joshia@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-15 20:12:42 +0000 |
commit | 9a2051dfb8a1b02f0ae06bd03c94f8d7945db669 (patch) | |
tree | 3e3c3b91866a6439fcc22fa52d9852de304815d2 /chrome/browser/web_contents.h | |
parent | 849890b62b75f95cf91ebd3fe49f1525ff6595bd (diff) | |
download | chromium_src-9a2051dfb8a1b02f0ae06bd03c94f8d7945db669.zip chromium_src-9a2051dfb8a1b02f0ae06bd03c94f8d7945db669.tar.gz chromium_src-9a2051dfb8a1b02f0ae06bd03c94f8d7945db669.tar.bz2 |
Code to facilitate sending message to external host.
Note that at this time the parameters to the message
are still tentative. The call goes as a sync call from
renderer to the browser. From then onwards it happens
async and no return value is available yet.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@957 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_contents.h')
-rw-r--r-- | chrome/browser/web_contents.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/web_contents.h b/chrome/browser/web_contents.h index b61eb70..09a07d0 100644 --- a/chrome/browser/web_contents.h +++ b/chrome/browser/web_contents.h @@ -427,6 +427,8 @@ class WebContents : public TabContents, WindowOpenDisposition disposition); virtual void DomOperationResponse(const std::string& json_string, int automation_id); + virtual void ProcessExternalHostMessage(const std::string& receiver, + const std::string& message); virtual void GoToEntryAtOffset(int offset); virtual void GetHistoryListCount(int* back_list_count, int* forward_list_count); |