| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "build/build_config.h" |
| 9 |
| 10 #if defined(OS_WIN) |
| 8 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| 12 #endif |
| 13 |
| 9 #include "chrome/views/focus/focus_manager.h" | 14 #include "chrome/views/focus/focus_manager.h" |
| 10 #include "chrome/views/view.h" | 15 #include "chrome/views/view.h" |
| 11 | 16 |
| 12 namespace views { | 17 namespace views { |
| 13 | 18 |
| 14 class PaintTask; | 19 class PaintTask; |
| 15 class RootViewDropTarget; | 20 class RootViewDropTarget; |
| 16 class Widget; | 21 class Widget; |
| 17 | 22 |
| 18 //////////////////////////////////////////////////////////////////////////////// | 23 //////////////////////////////////////////////////////////////////////////////// |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 | 354 |
| 350 #ifndef NDEBUG | 355 #ifndef NDEBUG |
| 351 // True if we're currently processing paint. | 356 // True if we're currently processing paint. |
| 352 bool is_processing_paint_; | 357 bool is_processing_paint_; |
| 353 #endif | 358 #endif |
| 354 }; | 359 }; |
| 355 | 360 |
| 356 } // namespace views | 361 } // namespace views |
| 357 | 362 |
| 358 #endif // CHROME_VIEWS_WIDGET_ROOT_VIEW_H_ | 363 #endif // CHROME_VIEWS_WIDGET_ROOT_VIEW_H_ |
| OLD | NEW |