diff options
Diffstat (limited to 'chrome/test/automation/tab_proxy.cc')
-rw-r--r-- | chrome/test/automation/tab_proxy.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/test/automation/tab_proxy.cc b/chrome/test/automation/tab_proxy.cc index 6171ddb..7c82b5c 100644 --- a/chrome/test/automation/tab_proxy.cc +++ b/chrome/test/automation/tab_proxy.cc @@ -929,13 +929,15 @@ bool TabProxy::SavePage(const std::wstring& file_name, return succeeded; } -void TabProxy::PostMessage(AutomationHandle handle, - const std::string& target, - const std::string& message) { +void TabProxy::HandleMessageFromExternalHost(AutomationHandle handle, + const std::string& target, + const std::string& message) { if (!is_valid()) return; bool succeeded = - sender_->Send(new AutomationMsg_PostMessage(0, handle, target, message)); + sender_->Send(new AutomationMsg_HandleMessageFromExternalHost(0, handle, + target, + message)); DCHECK(succeeded); } |