summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation/tab_proxy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/automation/tab_proxy.cc')
-rw-r--r--chrome/test/automation/tab_proxy.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/test/automation/tab_proxy.cc b/chrome/test/automation/tab_proxy.cc
index bca9c03..4033d65 100644
--- a/chrome/test/automation/tab_proxy.cc
+++ b/chrome/test/automation/tab_proxy.cc
@@ -535,13 +535,15 @@ bool TabProxy::SavePage(const std::wstring& file_name,
}
void TabProxy::HandleMessageFromExternalHost(AutomationHandle handle,
- const std::string& message) {
+ const std::string& message,
+ const std::string& origin,
+ const std::string& target) {
if (!is_valid())
return;
bool succeeded =
sender_->Send(new AutomationMsg_HandleMessageFromExternalHost(0, handle,
- message));
+ message, origin, target));
DCHECK(succeeded);
}