| 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 25 matching lines...) Expand all Loading... |
| 36 #if defined(CreateWindow) | 36 #if defined(CreateWindow) |
| 37 #undef CreateWindow | 37 #undef CreateWindow |
| 38 #endif | 38 #endif |
| 39 #endif | 39 #endif |
| 40 | 40 |
| 41 namespace base { | 41 namespace base { |
| 42 class TimeDelta; | 42 class TimeDelta; |
| 43 } | 43 } |
| 44 | 44 |
| 45 namespace gfx { | 45 namespace gfx { |
| 46 class Canvas; | |
| 47 class Point; | 46 class Point; |
| 48 class Rect; | 47 class Rect; |
| 49 } | 48 } |
| 50 | 49 |
| 51 namespace ui { | 50 namespace ui { |
| 52 class Accelerator; | 51 class Accelerator; |
| 53 class Compositor; | 52 class Compositor; |
| 54 class DefaultThemeProvider; | 53 class DefaultThemeProvider; |
| 55 class InputMethod; | 54 class InputMethod; |
| 56 class Layer; | 55 class Layer; |
| (...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 972 bool movement_disabled_; | 971 bool movement_disabled_; |
| 973 | 972 |
| 974 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_; | 973 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_; |
| 975 | 974 |
| 976 DISALLOW_COPY_AND_ASSIGN(Widget); | 975 DISALLOW_COPY_AND_ASSIGN(Widget); |
| 977 }; | 976 }; |
| 978 | 977 |
| 979 } // namespace views | 978 } // namespace views |
| 980 | 979 |
| 981 #endif // UI_VIEWS_WIDGET_WIDGET_H_ | 980 #endif // UI_VIEWS_WIDGET_WIDGET_H_ |
| OLD | NEW |