Index: ash/shell_observer.h |
diff --git a/ash/shell_observer.h b/ash/shell_observer.h |
index b09229b54a2165fd388e98aa8f3653399c1acf44..9d1db021e0c8b33624953537b9307ad10fbab6a9 100644 |
--- a/ash/shell_observer.h |
+++ b/ash/shell_observer.h |
@@ -9,7 +9,7 @@ |
#include "ash/system/user/login_status.h" |
namespace aura { |
-class RootWindow; |
+class Window; |
} |
namespace ash { |
@@ -30,14 +30,14 @@ class ASH_EXPORT ShellObserver { |
virtual void OnLockStateChanged(bool locked) {} |
// Invoked when the shelf alignment in |root_window| is changed. |
- virtual void OnShelfAlignmentChanged(aura::RootWindow* root_window) {} |
+ virtual void OnShelfAlignmentChanged(aura::Window* root_window) {} |
// Invoked when the projection touch HUD is toggled. |
virtual void OnTouchHudProjectionToggled(bool enabled) {} |
// Invoked when entering or exiting fullscreen mode in |root_window|. |
virtual void OnFullscreenStateChanged(bool is_fullscreen, |
- aura::RootWindow* root_window) {} |
+ aura::Window* root_window) {} |
protected: |
virtual ~ShellObserver() {} |