| Index: ash/wm/dock/docked_window_resizer.cc
|
| diff --git a/ash/wm/dock/docked_window_resizer.cc b/ash/wm/dock/docked_window_resizer.cc
|
| index 9de7707ead53bf7bcf19e097d874259126d9c5a5..bd5c87f30f7aa78a0239a20518fe5310f207535b 100644
|
| --- a/ash/wm/dock/docked_window_resizer.cc
|
| +++ b/ash/wm/dock/docked_window_resizer.cc
|
| @@ -14,15 +14,15 @@
|
| #include "ash/wm/workspace/magnetism_matcher.h"
|
| #include "ui/base/hit_test.h"
|
| #include "ui/base/ui_base_types.h"
|
| -#include "ui/gfx/screen.h"
|
| +#include "ui/display/screen.h"
|
|
|
| namespace ash {
|
| namespace {
|
|
|
| DockedWindowLayoutManager* GetDockedLayoutManagerAtPoint(
|
| const gfx::Point& point) {
|
| - gfx::Display display =
|
| - gfx::Screen::GetScreen()->GetDisplayNearestPoint(point);
|
| + display::Display display =
|
| + display::Screen::GetScreen()->GetDisplayNearestPoint(point);
|
| if (!display.bounds().Contains(point))
|
| return nullptr;
|
|
|
|
|