| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_VIEWS_WIDGET_WIDGET_H_ | 5 #ifndef UI_VIEWS_WIDGET_WIDGET_H_ |
| 6 #define UI_VIEWS_WIDGET_WIDGET_H_ | 6 #define UI_VIEWS_WIDGET_WIDGET_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 Widget* AsWidget() override; | 822 Widget* AsWidget() override; |
| 823 const Widget* AsWidget() const override; | 823 const Widget* AsWidget() const override; |
| 824 bool SetInitialFocus(ui::WindowShowState show_state) override; | 824 bool SetInitialFocus(ui::WindowShowState show_state) override; |
| 825 bool ShouldDescendIntoChildForEventHandling( | 825 bool ShouldDescendIntoChildForEventHandling( |
| 826 ui::Layer* root_layer, | 826 ui::Layer* root_layer, |
| 827 gfx::NativeView child, | 827 gfx::NativeView child, |
| 828 ui::Layer* child_layer, | 828 ui::Layer* child_layer, |
| 829 const gfx::Point& location) override; | 829 const gfx::Point& location) override; |
| 830 | 830 |
| 831 // Overridden from ui::EventSource: | 831 // Overridden from ui::EventSource: |
| 832 ui::EventProcessor* GetEventProcessor() override; | 832 ui::EventSink* GetEventSink() override; |
| 833 | 833 |
| 834 // Overridden from FocusTraversable: | 834 // Overridden from FocusTraversable: |
| 835 FocusSearch* GetFocusSearch() override; | 835 FocusSearch* GetFocusSearch() override; |
| 836 FocusTraversable* GetFocusTraversableParent() override; | 836 FocusTraversable* GetFocusTraversableParent() override; |
| 837 View* GetFocusTraversableParentView() override; | 837 View* GetFocusTraversableParentView() override; |
| 838 | 838 |
| 839 // Overridden from ui::NativeThemeObserver: | 839 // Overridden from ui::NativeThemeObserver: |
| 840 void OnNativeThemeUpdated(ui::NativeTheme* observed_theme) override; | 840 void OnNativeThemeUpdated(ui::NativeTheme* observed_theme) override; |
| 841 | 841 |
| 842 protected: | 842 protected: |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 bool movement_disabled_; | 988 bool movement_disabled_; |
| 989 | 989 |
| 990 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_; | 990 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_; |
| 991 | 991 |
| 992 DISALLOW_COPY_AND_ASSIGN(Widget); | 992 DISALLOW_COPY_AND_ASSIGN(Widget); |
| 993 }; | 993 }; |
| 994 | 994 |
| 995 } // namespace views | 995 } // namespace views |
| 996 | 996 |
| 997 #endif // UI_VIEWS_WIDGET_WIDGET_H_ | 997 #endif // UI_VIEWS_WIDGET_WIDGET_H_ |
| OLD | NEW |