diff options
Diffstat (limited to 'apps/shell/app_shell_browser_main_parts.cc')
-rw-r--r-- | apps/shell/app_shell_browser_main_parts.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/shell/app_shell_browser_main_parts.cc b/apps/shell/app_shell_browser_main_parts.cc index db08a5a..c56918d 100644 --- a/apps/shell/app_shell_browser_main_parts.cc +++ b/apps/shell/app_shell_browser_main_parts.cc @@ -7,11 +7,11 @@ #include "apps/shell/web_view_window.h" #include "base/run_loop.h" #include "content/public/common/result_codes.h" -#include "content/shell/browser/minimal_shell.h" #include "content/shell/browser/shell_browser_context.h" #include "ui/aura/env.h" #include "ui/aura/root_window.h" #include "ui/aura/test/test_screen.h" +#include "ui/shell/minimal_shell.h" namespace apps { @@ -42,7 +42,7 @@ void AppShellBrowserMainParts::PreMainMessageLoopRun() { gfx::Screen::SetScreenInstance( gfx::SCREEN_TYPE_NATIVE, aura::TestScreen::Create()); // Set up basic pieces of views::corewm. - minimal_shell_.reset(new content::MinimalShell(gfx::Size(800, 600))); + minimal_shell_.reset(new shell::MinimalShell(gfx::Size(800, 600))); // Ensure the X window gets mapped. minimal_shell_->root_window()->ShowRootWindow(); |