| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/task.h" | 10 #include "base/task.h" |
| 11 #include "ui/gfx/native_widget_types.h" |
| 11 #include "ui/gfx/point.h" | 12 #include "ui/gfx/point.h" |
| 12 #include "ui/views/native_types.h" | |
| 13 #include "ui/views/focus/focus_manager.h" | 13 #include "ui/views/focus/focus_manager.h" |
| 14 #include "ui/views/widget/native_widget_listener.h" | 14 #include "ui/views/widget/native_widget_listener.h" |
| 15 | 15 |
| 16 namespace gfx { | 16 namespace gfx { |
| 17 class Canvas; | 17 class Canvas; |
| 18 class Path; | 18 class Path; |
| 19 class Rect; | 19 class Rect; |
| 20 class Size; | 20 class Size; |
| 21 } | 21 } |
| 22 | 22 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 143 |
| 144 scoped_ptr<FocusManager> focus_manager_; | 144 scoped_ptr<FocusManager> focus_manager_; |
| 145 | 145 |
| 146 DISALLOW_COPY_AND_ASSIGN(Widget); | 146 DISALLOW_COPY_AND_ASSIGN(Widget); |
| 147 }; | 147 }; |
| 148 | 148 |
| 149 } // namespace ui | 149 } // namespace ui |
| 150 | 150 |
| 151 #endif // UI_VIEWS_WIDGET_WIDGET_H_ | 151 #endif // UI_VIEWS_WIDGET_WIDGET_H_ |
| 152 | 152 |
| OLD | NEW |