| Index: ash/content/keyboard_overlay/keyboard_overlay_delegate_unittest.cc
|
| diff --git a/ash/content/keyboard_overlay/keyboard_overlay_delegate_unittest.cc b/ash/content/keyboard_overlay/keyboard_overlay_delegate_unittest.cc
|
| index 9780a45383842296c370a6690d835438eef4a1c3..cc4a5571a7e5fc2e418225411610394a5dd73bc6 100644
|
| --- a/ash/content/keyboard_overlay/keyboard_overlay_delegate_unittest.cc
|
| +++ b/ash/content/keyboard_overlay/keyboard_overlay_delegate_unittest.cc
|
| @@ -9,8 +9,8 @@
|
| #include "ash/test/ash_test_base.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "ui/aura/window.h"
|
| -#include "ui/gfx/display.h"
|
| -#include "ui/gfx/screen.h"
|
| +#include "ui/display/display.h"
|
| +#include "ui/display/screen.h"
|
| #include "ui/views/widget/widget.h"
|
|
|
| namespace ash {
|
| @@ -49,7 +49,7 @@ TEST_P(KeyboardOverlayDelegateTest, ShowAndClose) {
|
|
|
| // The widget is horizontally centered at the bottom of the work area.
|
| gfx::Rect work_area =
|
| - gfx::Screen::GetScreen()->GetPrimaryDisplay().work_area();
|
| + display::Screen::GetScreen()->GetPrimaryDisplay().work_area();
|
| gfx::Rect bounds = widget->GetRestoredBounds();
|
| EXPECT_EQ(work_area.CenterPoint().x(), bounds.CenterPoint().x());
|
| EXPECT_EQ(work_area.bottom(), bounds.bottom());
|
|
|