| Index: ash/first_run/first_run_helper_impl.cc
|
| diff --git a/ash/first_run/first_run_helper_impl.cc b/ash/first_run/first_run_helper_impl.cc
|
| index 19d107fd0a8c51f79e1b3af2d7448e77f62f1c8a..ec21cf21b14a2bbd6b828346ba0d59c8c47c8557 100644
|
| --- a/ash/first_run/first_run_helper_impl.cc
|
| +++ b/ash/first_run/first_run_helper_impl.cc
|
| @@ -12,6 +12,7 @@
|
| #include "ui/app_list/views/app_list_view.h"
|
| #include "ui/aura/window.h"
|
| #include "ui/gfx/geometry/rect.h"
|
| +#include "ui/gfx/screen.h"
|
| #include "ui/views/view.h"
|
| #include "ui/views/widget/widget.h"
|
|
|
| @@ -22,7 +23,7 @@ namespace {
|
| views::Widget* CreateFirstRunWindow() {
|
| views::Widget::InitParams params(
|
| views::Widget::InitParams::TYPE_WINDOW_FRAMELESS);
|
| - params.bounds = Shell::GetScreen()->GetPrimaryDisplay().bounds();
|
| + params.bounds = gfx::Screen::GetScreen()->GetPrimaryDisplay().bounds();
|
| params.show_state = ui::SHOW_STATE_FULLSCREEN;
|
| params.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW;
|
| params.parent = Shell::GetContainer(Shell::GetPrimaryRootWindow(),
|
|
|