summaryrefslogtreecommitdiffstats
path: root/ash/shell_observer.h
diff options
context:
space:
mode:
Diffstat (limited to 'ash/shell_observer.h')
-rw-r--r--ash/shell_observer.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ash/shell_observer.h b/ash/shell_observer.h
index 9d1db02..c2b652c 100644
--- a/ash/shell_observer.h
+++ b/ash/shell_observer.h
@@ -39,6 +39,14 @@ class ASH_EXPORT ShellObserver {
virtual void OnFullscreenStateChanged(bool is_fullscreen,
aura::Window* root_window) {}
+ // Called when the overview mode is about to be started (before the windows
+ // get re-arranged).
+ virtual void OnOverviewModeStarting() {}
+
+ // Called before the overview mode is ending (before the windows get arranged
+ // to their final position).
+ virtual void OnOverviewModeEnding() {}
+
protected:
virtual ~ShellObserver() {}
};