diff options
Diffstat (limited to 'chrome/test/automation/automation_proxy.cc')
-rw-r--r-- | chrome/test/automation/automation_proxy.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/test/automation/automation_proxy.cc b/chrome/test/automation/automation_proxy.cc index 0a758a5..4658bf3 100644 --- a/chrome/test/automation/automation_proxy.cc +++ b/chrome/test/automation/automation_proxy.cc @@ -485,10 +485,8 @@ void AutomationProxy::InvalidateHandle(const IPC::Message& message) { } } -bool AutomationProxy::OpenNewBrowserWindow(BrowserProxy::Type type, - bool show) { - return Send(new AutomationMsg_OpenNewBrowserWindow(0, static_cast<int>(type), - show)); +bool AutomationProxy::OpenNewBrowserWindow(bool show) { + return Send(new AutomationMsg_OpenNewBrowserWindow(0, show)); } scoped_refptr<TabProxy> AutomationProxy::CreateExternalTab( |