| Index: ash/mus/window_manager.cc
|
| diff --git a/ash/mus/window_manager.cc b/ash/mus/window_manager.cc
|
| index 08d115ca611e820a7ef56f23d6da32552eeaee50..8cae23ba78913dff6c376578cd9ed11fb37d41ea 100644
|
| --- a/ash/mus/window_manager.cc
|
| +++ b/ash/mus/window_manager.cc
|
| @@ -32,7 +32,6 @@
|
| #include "ash/wm/ash_focus_rules.h"
|
| #include "ash/wm/container_finder.h"
|
| #include "ash/wm/window_state.h"
|
| -#include "ash/wm_window.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/threading/sequenced_worker_pool.h"
|
| #include "services/service_manager/public/cpp/connector.h"
|
| @@ -353,7 +352,7 @@ void WindowManager::OnWmSetBounds(aura::Window* window,
|
| const gfx::Rect& bounds) {
|
| // TODO(sky): this indirectly sets bounds, which is against what
|
| // OnWmSetBounds() recommends doing. Remove that restriction, or fix this.
|
| - WmWindow::Get(window)->SetBounds(bounds);
|
| + window->SetBounds(bounds);
|
| }
|
|
|
| bool WindowManager::OnWmSetProperty(
|
|
|