| Index: ash/mus/bridge/wm_lookup_mus.cc
|
| diff --git a/ash/mus/bridge/wm_lookup_mus.cc b/ash/mus/bridge/wm_lookup_mus.cc
|
| index d0bc4e58dc3acd0a835dbee5d5e202c15a9d3cb2..b5cab151e7f2d959003de31614669f39027a6bcf 100644
|
| --- a/ash/mus/bridge/wm_lookup_mus.cc
|
| +++ b/ash/mus/bridge/wm_lookup_mus.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "ash/common/wm_window.h"
|
| #include "ash/mus/bridge/wm_shell_mus.h"
|
| -#include "ash/mus/root_window_controller.h"
|
| #include "ui/views/widget/widget.h"
|
|
|
| namespace ash {
|
| @@ -21,11 +20,9 @@ WmLookupMus::~WmLookupMus() {
|
| WmLookup::Set(nullptr);
|
| }
|
|
|
| -ash::RootWindowController* WmLookupMus::GetRootWindowControllerWithDisplayId(
|
| +RootWindowController* WmLookupMus::GetRootWindowControllerWithDisplayId(
|
| int64_t id) {
|
| - return WmShellMus::Get()
|
| - ->GetRootWindowControllerWithDisplayId(id)
|
| - ->ash_root_window_controller();
|
| + return WmShellMus::Get()->GetRootWindowControllerWithDisplayId(id);
|
| }
|
|
|
| WmWindow* WmLookupMus::GetWindowForWidget(views::Widget* widget) {
|
|
|