| Index: ash/wm/window_state_aura.cc
|
| diff --git a/ash/wm/window_state_aura.cc b/ash/wm/window_state_aura.cc
|
| index a226d93855323a1a8c1c33fe02687884fe31ded7..c2ae3d6ab89ce88a69f43c21eab42a97ded17793 100644
|
| --- a/ash/wm/window_state_aura.cc
|
| +++ b/ash/wm/window_state_aura.cc
|
| @@ -4,8 +4,8 @@
|
|
|
| #include "ash/wm/window_state_aura.h"
|
|
|
| -#include "ash/aura/wm_window_aura.h"
|
| #include "ash/common/wm/window_state.h"
|
| +#include "ash/common/wm_window.h"
|
| #include "ash/wm/window_properties.h"
|
| #include "ash/wm/window_util.h"
|
| #include "ui/aura/window.h"
|
| @@ -38,7 +38,7 @@ WindowState* GetWindowState(aura::Window* window) {
|
| return nullptr;
|
| WindowState* settings = window->GetProperty(kWindowStateKey);
|
| if (!settings) {
|
| - settings = new WindowStateAura(WmWindowAura::Get(window));
|
| + settings = new WindowStateAura(WmWindow::Get(window));
|
| window->SetProperty(kWindowStateKey, settings);
|
| }
|
| return settings;
|
|
|