diff options
author | joshia@google.com <joshia@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-15 20:33:28 +0000 |
---|---|---|
committer | joshia@google.com <joshia@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-15 20:33:28 +0000 |
commit | 5e40e26d39ea8bf3f6eb879e09e4e5b1f335b9ad (patch) | |
tree | d53d181f4d8db21bc854259a6108c40802cdc484 /chrome/browser/external_tab_container.cc | |
parent | 7c094b94db4da177d8b950f23a1223b9c5346a3e (diff) | |
download | chromium_src-5e40e26d39ea8bf3f6eb879e09e4e5b1f335b9ad.zip chromium_src-5e40e26d39ea8bf3f6eb879e09e4e5b1f335b9ad.tar.gz chromium_src-5e40e26d39ea8bf3f6eb879e09e4e5b1f335b9ad.tar.bz2 |
Add missing files from the previous change
TBR=iyengar
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@959 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/external_tab_container.cc')
-rw-r--r-- | chrome/browser/external_tab_container.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/browser/external_tab_container.cc b/chrome/browser/external_tab_container.cc index 069896a..13bb2a7 100644 --- a/chrome/browser/external_tab_container.cc +++ b/chrome/browser/external_tab_container.cc @@ -236,6 +236,14 @@ void ExternalTabContainer::DidNavigate(NavigationType nav_type, } } +void ExternalTabContainer::SendExternalHostMessage(const std::string& receiver, + const std::string& message) { + if(automation_) { + automation_->Send( + new AutomationMsg_SendExternalHostMessage(0, receiver, message)); + } +} + void ExternalTabContainer::Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) { |