| Index: chrome/browser/ui/browser_commands.h
|
| diff --git a/chrome/browser/ui/browser_commands.h b/chrome/browser/ui/browser_commands.h
|
| index d14b51677e675f9f86390632273cb878ad56f1ee..846dc0214c1046d5bdec0ea59605a178a88e2106 100644
|
| --- a/chrome/browser/ui/browser_commands.h
|
| +++ b/chrome/browser/ui/browser_commands.h
|
| @@ -41,22 +41,23 @@ void RemoveCommandObserver(Browser*, int command, CommandObserver* observer);
|
| int GetContentRestrictions(const Browser* browser);
|
|
|
| // Opens a new window with the default blank tab.
|
| -void NewEmptyWindow(Profile* profile, HostDesktopType desktop_type);
|
| +void NewEmptyWindow(Profile* profile, ui::HostDesktopType desktop_type);
|
|
|
| // Opens a new window with the default blank tab. This bypasses metrics and
|
| // various internal bookkeeping; NewEmptyWindow (above) is preferred.
|
| -Browser* OpenEmptyWindow(Profile* profile, HostDesktopType desktop_type);
|
| +Browser* OpenEmptyWindow(Profile* profile, ui::HostDesktopType desktop_type);
|
|
|
| // Opens a new window with the tabs from |profile|'s TabRestoreService.
|
| void OpenWindowWithRestoredTabs(Profile* profile,
|
| - HostDesktopType host_desktop_type);
|
| + ui::HostDesktopType host_desktop_type);
|
|
|
| // Opens the specified URL in a new browser window in an incognito session on
|
| // the desktop specified by |desktop_type|. If there is already an existing
|
| // active incognito session for the specified |profile|, that session is re-
|
| // used.
|
| -void OpenURLOffTheRecord(Profile* profile, const GURL& url,
|
| - chrome::HostDesktopType desktop_type);
|
| +void OpenURLOffTheRecord(Profile* profile,
|
| + const GURL& url,
|
| + ui::HostDesktopType desktop_type);
|
|
|
| bool CanGoBack(const Browser* browser);
|
| void GoBack(Browser* browser, WindowOpenDisposition disposition);
|
|
|