| Index: ash/mus/bridge/wm_shell_mus.cc
|
| diff --git a/ash/mus/bridge/wm_shell_mus.cc b/ash/mus/bridge/wm_shell_mus.cc
|
| index e2eb353e1b57e430b3afc5446e339fd99e6daf00..1952ea4c01361981c4cc0dd606e7e3de5e9f52fb 100644
|
| --- a/ash/mus/bridge/wm_shell_mus.cc
|
| +++ b/ash/mus/bridge/wm_shell_mus.cc
|
| @@ -7,7 +7,6 @@
|
| #include <utility>
|
|
|
| #include "ash/common/accelerators/accelerator_controller.h"
|
| -#include "ash/common/display/display_info.h"
|
| #include "ash/common/keyboard/keyboard_ui.h"
|
| #include "ash/common/session/session_state_delegate.h"
|
| #include "ash/common/shell_delegate.h"
|
| @@ -34,6 +33,7 @@
|
| #include "services/ui/common/util.h"
|
| #include "services/ui/public/cpp/window.h"
|
| #include "services/ui/public/cpp/window_tree_client.h"
|
| +#include "ui/display/manager/display_info.h"
|
| #include "ui/display/screen.h"
|
| #include "ui/views/mus/pointer_watcher_event_router.h"
|
|
|
| @@ -219,10 +219,10 @@ WmWindow* WmShellMus::GetRootWindowForDisplayId(int64_t display_id) {
|
| return GetRootWindowControllerWithDisplayId(display_id)->GetWindow();
|
| }
|
|
|
| -const DisplayInfo& WmShellMus::GetDisplayInfo(int64_t display_id) const {
|
| +const ui::DisplayInfo& WmShellMus::GetDisplayInfo(int64_t display_id) const {
|
| // TODO(mash): implement http://crbug.com/622480.
|
| NOTIMPLEMENTED();
|
| - static DisplayInfo fake_info;
|
| + static ui::DisplayInfo fake_info;
|
| return fake_info;
|
| }
|
|
|
|
|