OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_VIEWS_WIDGET_ROOT_VIEW_H_ | 5 #ifndef CHROME_VIEWS_WIDGET_ROOT_VIEW_H_ |
6 #define CHROME_VIEWS_WIDGET_ROOT_VIEW_H_ | 6 #define CHROME_VIEWS_WIDGET_ROOT_VIEW_H_ |
7 | 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/ref_counted.h" |
8 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 12 #include "chrome/views/focus/focus_manager.h" |
| 13 #include "chrome/views/view.h" |
9 | 14 |
10 #if defined(OS_LINUX) | 15 #if defined(OS_LINUX) |
11 #include <gtk/gtk.h> | 16 typedef struct _GdkEventExpose GdkEventExpose; |
12 #endif | 17 #endif |
13 | 18 |
14 #if defined(OS_WIN) | |
15 #include "base/ref_counted.h" | |
16 #endif | |
17 | |
18 #include "chrome/views/focus/focus_manager.h" | |
19 #include "chrome/views/view.h" | |
20 | |
21 namespace views { | 19 namespace views { |
22 | 20 |
23 class PaintTask; | 21 class PaintTask; |
24 class RootViewDropTarget; | 22 class RootViewDropTarget; |
25 class Widget; | 23 class Widget; |
26 | 24 |
27 //////////////////////////////////////////////////////////////////////////////// | 25 //////////////////////////////////////////////////////////////////////////////// |
28 // | 26 // |
29 // FocusListener Interface | 27 // FocusListener Interface |
30 // | 28 // |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 | 352 |
355 #ifndef NDEBUG | 353 #ifndef NDEBUG |
356 // True if we're currently processing paint. | 354 // True if we're currently processing paint. |
357 bool is_processing_paint_; | 355 bool is_processing_paint_; |
358 #endif | 356 #endif |
359 }; | 357 }; |
360 | 358 |
361 } // namespace views | 359 } // namespace views |
362 | 360 |
363 #endif // CHROME_VIEWS_WIDGET_ROOT_VIEW_H_ | 361 #endif // CHROME_VIEWS_WIDGET_ROOT_VIEW_H_ |
OLD | NEW |