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/render_view_host.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/render_view_host.h')
-rw-r--r-- | chrome/browser/render_view_host.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/render_view_host.h b/chrome/browser/render_view_host.h index b546331..2faf76a 100644 --- a/chrome/browser/render_view_host.h +++ b/chrome/browser/render_view_host.h @@ -459,6 +459,8 @@ class RenderViewHost : public RenderWidgetHost { int automation_id); void OnMsgDOMUISend(const std::string& message, const std::string& content); + void OnMsgExternalHostMessage(const std::string& receiver, + const std::string& message); #ifdef CHROME_PERSONALIZATION void OnPersonalizationEvent(const std::string& message, const std::string& content); |