| Index: chrome/browser/ui/ash/chrome_new_window_delegate.cc
|
| diff --git a/chrome/browser/ui/ash/chrome_new_window_delegate.cc b/chrome/browser/ui/ash/chrome_new_window_delegate.cc
|
| index 49dc9dc21e162873414e68bda2a97e2fe7989f8c..8b0f5bb17b1ef9fff02fb86eb20399ac60c92045 100644
|
| --- a/chrome/browser/ui/ash/chrome_new_window_delegate.cc
|
| +++ b/chrome/browser/ui/ash/chrome_new_window_delegate.cc
|
| @@ -20,7 +20,7 @@ namespace {
|
|
|
| void RestoreTabUsingProfile(Profile* profile) {
|
| TabRestoreService* service = TabRestoreServiceFactory::GetForProfile(profile);
|
| - service->RestoreMostRecentEntry(NULL, chrome::HOST_DESKTOP_TYPE_ASH);
|
| + service->RestoreMostRecentEntry(NULL, ui::HOST_DESKTOP_TYPE_ASH);
|
| }
|
|
|
| // Returns the browser for the active window, if any.
|
| @@ -84,7 +84,7 @@ void ChromeNewWindowDelegate::NewTab() {
|
| // Display a browser, setting the focus to the location bar after it is shown.
|
| {
|
| chrome::ScopedTabbedBrowserDisplayer displayer(
|
| - ProfileManager::GetActiveUserProfile(), chrome::HOST_DESKTOP_TYPE_ASH);
|
| + ProfileManager::GetActiveUserProfile(), ui::HOST_DESKTOP_TYPE_ASH);
|
| browser = displayer.browser();
|
| chrome::NewTab(browser);
|
| }
|
| @@ -96,7 +96,7 @@ void ChromeNewWindowDelegate::NewWindow(bool is_incognito) {
|
| Profile* profile = ProfileManager::GetActiveUserProfile();
|
| chrome::NewEmptyWindow(
|
| is_incognito ? profile->GetOffTheRecordProfile() : profile,
|
| - chrome::HOST_DESKTOP_TYPE_ASH);
|
| + ui::HOST_DESKTOP_TYPE_ASH);
|
| }
|
|
|
| void ChromeNewWindowDelegate::RestoreTab() {
|
|
|