diff options
Diffstat (limited to 'ui/aura/root_window_observer.h')
-rw-r--r-- | ui/aura/root_window_observer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/aura/root_window_observer.h b/ui/aura/root_window_observer.h index 41417f2..8cc48e6 100644 --- a/ui/aura/root_window_observer.h +++ b/ui/aura/root_window_observer.h @@ -24,9 +24,8 @@ class AURA_EXPORT RootWindowObserver { // Invoked when a new window is initialized. virtual void OnWindowInitialized(Window* window) {} - // Invoked when the active window is changed. |active| may be NULL if there is - // not active window. - virtual void OnActiveWindowChanged(Window* active) {} + // Invoked when a window is focused. + virtual void OnWindowFocused(Window* window) {} protected: virtual ~RootWindowObserver() {} |