| 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 VIEWS_WIDGET_WIDGET_WIN_H_ | 5 #ifndef VIEWS_WIDGET_WIDGET_WIN_H_ |
| 6 #define VIEWS_WIDGET_WIDGET_WIN_H_ | 6 #define VIEWS_WIDGET_WIDGET_WIN_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlapp.h> | 9 #include <atlapp.h> |
| 10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
| 11 #include <atlmisc.h> | 11 #include <atlmisc.h> |
| 12 | 12 |
| 13 #include "app/win/window_impl.h" | 13 #include "app/win/window_impl.h" |
| 14 #include "base/message_loop.h" | 14 #include "base/message_loop.h" |
| 15 #include "base/scoped_comptr_win.h" | 15 #include "base/scoped_comptr_win.h" |
| 16 #include "base/system_monitor.h" | |
| 17 #include "views/focus/focus_manager.h" | 16 #include "views/focus/focus_manager.h" |
| 18 #include "views/layout_manager.h" | 17 #include "views/layout_manager.h" |
| 19 #include "views/widget/widget.h" | 18 #include "views/widget/widget.h" |
| 20 | 19 |
| 21 namespace gfx { | 20 namespace gfx { |
| 22 class Canvas; | 21 class Canvas; |
| 23 class Rect; | 22 class Rect; |
| 24 } | 23 } |
| 25 | 24 |
| 26 namespace views { | 25 namespace views { |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 | 536 |
| 538 // Instance of accessibility information and handling for MSAA root | 537 // Instance of accessibility information and handling for MSAA root |
| 539 ScopedComPtr<IAccessible> accessibility_root_; | 538 ScopedComPtr<IAccessible> accessibility_root_; |
| 540 | 539 |
| 541 scoped_ptr<DefaultThemeProvider> default_theme_provider_; | 540 scoped_ptr<DefaultThemeProvider> default_theme_provider_; |
| 542 }; | 541 }; |
| 543 | 542 |
| 544 } // namespace views | 543 } // namespace views |
| 545 | 544 |
| 546 #endif // VIEWS_WIDGET_WIDGET_WIN_H_ | 545 #endif // VIEWS_WIDGET_WIDGET_WIN_H_ |
| OLD | NEW |