Index: chrome/browser/ui/app_list/arc/arc_app_utils.cc |
diff --git a/chrome/browser/ui/app_list/arc/arc_app_utils.cc b/chrome/browser/ui/app_list/arc/arc_app_utils.cc |
index a8747cc7a12b41cf0d5f331ff4a41fef4e4d6fb1..ffb2be3768c1b38bc5d473123c2d78455507f255 100644 |
--- a/chrome/browser/ui/app_list/arc/arc_app_utils.cc |
+++ b/chrome/browser/ui/app_list/arc/arc_app_utils.cc |
@@ -10,8 +10,8 @@ |
#include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" |
#include "components/arc/arc_bridge_service.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" |
namespace arc { |
@@ -82,7 +82,7 @@ class LaunchAppWithoutSize { |
// area. We can therefore ignore the provided left / top offsets. |
aura::Window* root = ash::Shell::GetPrimaryRootWindow(); |
gfx::Rect work_area = |
- gfx::Screen::GetScreen()->GetDisplayNearestWindow(root).work_area(); |
+ display::Screen::GetScreen()->GetDisplayNearestWindow(root).work_area(); |
// For what Android is concerned, the title bar starts at -TITLE_BAR_HEIGHT. |
// as such we deduct the title bar height simply from the height, but leave |