summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation/tab_proxy.cc
diff options
context:
space:
mode:
authorstoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-11 23:35:21 +0000
committerstoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-11 23:35:21 +0000
commit03f27a7db3f9b0ea13523c126e72d0561c235e9e (patch)
tree51398decc6ce65691b88e5abbe488f916cec476c /chrome/test/automation/tab_proxy.cc
parent8c66f1b4a7164a2f7cb61bae3288cd3dc50c2b18 (diff)
downloadchromium_src-03f27a7db3f9b0ea13523c126e72d0561c235e9e.zip
chromium_src-03f27a7db3f9b0ea13523c126e72d0561c235e9e.tar.gz
chromium_src-03f27a7db3f9b0ea13523c126e72d0561c235e9e.tar.bz2
Remove AutomationRequest (deprecated by using SyncChannel). Some minor cleanup.
Review URL: http://codereview.chromium.org/115210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/tab_proxy.cc')
-rw-r--r--chrome/test/automation/tab_proxy.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/test/automation/tab_proxy.cc b/chrome/test/automation/tab_proxy.cc
index 811f926..2b27e0d 100644
--- a/chrome/test/automation/tab_proxy.cc
+++ b/chrome/test/automation/tab_proxy.cc
@@ -547,15 +547,14 @@ bool TabProxy::SavePage(const std::wstring& file_name,
return succeeded;
}
-void TabProxy::HandleMessageFromExternalHost(AutomationHandle handle,
- const std::string& message,
+void TabProxy::HandleMessageFromExternalHost(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,
+ sender_->Send(new AutomationMsg_HandleMessageFromExternalHost(0, handle_,
message, origin, target));
DCHECK(succeeded);
}