diff options
Diffstat (limited to 'content/shell/browser/shell_aura.cc')
-rw-r--r-- | content/shell/browser/shell_aura.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/shell/browser/shell_aura.cc b/content/shell/browser/shell_aura.cc index da8460e..7d8309a 100644 --- a/content/shell/browser/shell_aura.cc +++ b/content/shell/browser/shell_aura.cc @@ -30,8 +30,8 @@ #if defined(OS_CHROMEOS) #include "chromeos/dbus/dbus_thread_manager.h" -#include "content/shell/browser/minimal_shell.h" #include "ui/aura/test/test_screen.h" +#include "ui/shell/minimal_shell.h" #endif #if defined(OS_WIN) @@ -278,7 +278,7 @@ class ShellWindowDelegateView : public views::WidgetDelegateView, } // namespace #if defined(OS_CHROMEOS) -MinimalShell* Shell::minimal_shell_ = NULL; +shell::MinimalShell* Shell::minimal_shell_ = NULL; #endif views::ViewsDelegate* Shell::views_delegate_ = NULL; @@ -292,7 +292,7 @@ void Shell::PlatformInitialize(const gfx::Size& default_window_size) { chromeos::DBusThreadManager::Initialize(); gfx::Screen::SetScreenInstance( gfx::SCREEN_TYPE_NATIVE, aura::TestScreen::Create()); - minimal_shell_ = new content::MinimalShell(default_window_size); + minimal_shell_ = new shell::MinimalShell(default_window_size); #else gfx::Screen::SetScreenInstance( gfx::SCREEN_TYPE_NATIVE, views::CreateDesktopScreen()); |