diff options
author | iyengar@google.com <iyengar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-15 21:22:15 +0000 |
---|---|---|
committer | iyengar@google.com <iyengar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-15 21:22:15 +0000 |
commit | 3ac14a058599a1381224264784ad4000934f0119 (patch) | |
tree | c67e92c258ee19a378be5acfdb5741d2d2085bab /chrome/browser/automation | |
parent | b5e3bbf106f2bda83900e526d07dfa10a2164c82 (diff) | |
download | chromium_src-3ac14a058599a1381224264784ad4000934f0119.zip chromium_src-3ac14a058599a1381224264784ad4000934f0119.tar.gz chromium_src-3ac14a058599a1381224264784ad4000934f0119.tar.bz2 |
Added support for PostMessage from the automation framework to
the renderer.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@964 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation')
-rw-r--r-- | chrome/browser/automation/automation_provider.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h index 1bde370..1fac8fa 100644 --- a/chrome/browser/automation/automation_provider.h +++ b/chrome/browser/automation/automation_provider.h @@ -311,6 +311,10 @@ class AutomationProvider : public base::RefCounted<AutomationProvider>, void AutocompleteEditGetMatches(const IPC::Message& message, int autocomplete_edit_handle); + // Handler for PostMessage sent by the automation client. + void OnPostMessage(int handle, const std::string& target, + const std::string& message); + // Callback for history redirect queries. virtual void OnRedirectQueryComplete( HistoryService::Handle request_handle, |