Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: chrome/test/ui/ui_test.cc

Issue 5998006: Clean up Automation and Chrome Frame IPC code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/automation/window_proxy.cc ('k') | chrome_frame/cfproxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/ui/ui_test.cc
===================================================================
--- chrome/test/ui/ui_test.cc (revision 69966)
+++ chrome/test/ui/ui_test.cc (working copy)
@@ -568,7 +568,7 @@
void UITestBase::CloseBrowserAsync(BrowserProxy* browser) const {
ASSERT_TRUE(server_->Send(
- new AutomationMsg_CloseBrowserRequestAsync(0, browser->handle())));
+ new AutomationMsg_CloseBrowserRequestAsync(browser->handle())));
}
bool UITestBase::CloseBrowser(BrowserProxy* browser,
@@ -580,7 +580,7 @@
bool result = true;
bool succeeded = server_->Send(new AutomationMsg_CloseBrowser(
- 0, browser->handle(), &result, application_closed));
+ browser->handle(), &result, application_closed));
if (!succeeded)
return false;
« no previous file with comments | « chrome/test/automation/window_proxy.cc ('k') | chrome_frame/cfproxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698