Index: chrome/browser/automation/automation_provider.h |
=================================================================== |
--- chrome/browser/automation/automation_provider.h (revision 30237) |
+++ chrome/browser/automation/automation_provider.h (working copy) |
@@ -185,6 +185,7 @@ |
void IsWindowMaximized(int handle, bool* is_maximized, bool* success); |
void GetTabCount(int handle, int* tab_count); |
+ void GetType(int handle, int* type_as_int); |
void GetTab(int win_handle, int tab_index, int* tab_handle); |
#if defined(OS_WIN) |
// TODO(port): Replace HWND. |
@@ -284,6 +285,9 @@ |
// If |show| is true, call Show() on the new window after creating it. |
void OpenNewBrowserWindow(bool show, IPC::Message* reply_message); |
+ void OpenNewBrowserWindowOfType(int type, |
+ bool show, |
+ IPC::Message* reply_message); |
void ShowInterstitialPage(int tab_handle, |
const std::string& html_text, |