diff options
Diffstat (limited to 'views/widget/root_view.h')
-rw-r--r-- | views/widget/root_view.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/views/widget/root_view.h b/views/widget/root_view.h index 8f0df1f..2f1e391 100644 --- a/views/widget/root_view.h +++ b/views/widget/root_view.h @@ -21,17 +21,6 @@ class PaintTask; class RootViewDropTarget; class Widget; -//////////////////////////////////////////////////////////////////////////////// -// -// FocusListener Interface -// -//////////////////////////////////////////////////////////////////////////////// -class FocusListener { - public: - virtual void FocusChanged(View* lost_focus, View* got_focus) = 0; -}; - - ///////////////////////////////////////////////////////////////////////////// // // RootView class @@ -151,9 +140,6 @@ class RootView : public View, // Overridden to handle special root view case. virtual bool IsVisibleInRootView() const; - // Sets a listener that receives focus changes events. - void SetFocusListener(FocusListener* listener); - // FocusTraversable implementation. virtual View* FindNextFocusableView(View* starting_view, bool reverse, @@ -308,9 +294,6 @@ class RootView : public View, // Default keyboard handler View* default_keyboard_handler_; - // The listener that gets focus change notifications. - FocusListener* focus_listener_; - // Whether this root view should make our hwnd focused // when an unprocessed mouse press event occurs bool focus_on_mouse_pressed_; |