| Index: ash/common/wm/lock_layout_manager.h
|
| diff --git a/ash/common/wm/lock_layout_manager.h b/ash/common/wm/lock_layout_manager.h
|
| index ba571e226b77c8e192143afc820f151cfe526e13..9ba7473d390c750a1e76a340ea26da62b2701457 100644
|
| --- a/ash/common/wm/lock_layout_manager.h
|
| +++ b/ash/common/wm/lock_layout_manager.h
|
| @@ -9,8 +9,8 @@
|
| #include "ash/common/shell_observer.h"
|
| #include "ash/common/wm/wm_snap_to_pixel_layout_manager.h"
|
| #include "ash/common/wm/wm_types.h"
|
| -#include "ash/common/wm_window_observer.h"
|
| #include "base/macros.h"
|
| +#include "ui/aura/window_observer.h"
|
| #include "ui/gfx/geometry/rect.h"
|
| #include "ui/keyboard/keyboard_controller.h"
|
| #include "ui/keyboard/keyboard_controller_observer.h"
|
| @@ -34,7 +34,7 @@ class WMEvent;
|
| // with LockWindowState.
|
| class ASH_EXPORT LockLayoutManager
|
| : public wm::WmSnapToPixelLayoutManager,
|
| - public WmWindowObserver,
|
| + public aura::WindowObserver,
|
| public ShellObserver,
|
| public keyboard::KeyboardControllerObserver {
|
| public:
|
| @@ -50,9 +50,9 @@ class ASH_EXPORT LockLayoutManager
|
| void SetChildBounds(WmWindow* child,
|
| const gfx::Rect& requested_bounds) override;
|
|
|
| - // Overriden from WmWindowObserver:
|
| - void OnWindowDestroying(WmWindow* window) override;
|
| - void OnWindowBoundsChanged(WmWindow* window,
|
| + // Overriden from aura::WindowObserver:
|
| + void OnWindowDestroying(aura::Window* window) override;
|
| + void OnWindowBoundsChanged(aura::Window* window,
|
| const gfx::Rect& old_bounds,
|
| const gfx::Rect& new_bounds) override;
|
|
|
|
|