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 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <atlbase.h> | 9 #include <atlbase.h> |
10 #include <atlapp.h> | 10 #include <atlapp.h> |
11 #include <atlcrack.h> | 11 #include <atlcrack.h> |
12 #include <atlmisc.h> | 12 #include <atlmisc.h> |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "base/message_loop.h" | 17 #include "base/message_loop.h" |
| 18 #include "base/scoped_ptr.h" |
18 #include "base/scoped_vector.h" | 19 #include "base/scoped_vector.h" |
19 #include "base/win/scoped_comptr.h" | 20 #include "base/win/scoped_comptr.h" |
20 #include "ui/base/win/window_impl.h" | 21 #include "ui/base/win/window_impl.h" |
21 #include "views/focus/focus_manager.h" | 22 #include "views/focus/focus_manager.h" |
22 #include "views/layout/layout_manager.h" | 23 #include "views/layout/layout_manager.h" |
23 #include "views/widget/widget.h" | 24 #include "views/widget/widget.h" |
24 | 25 |
25 namespace ui { | 26 namespace ui { |
26 class ViewProp; | 27 class ViewProp; |
27 } | 28 } |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 int accessibility_view_events_index_; | 594 int accessibility_view_events_index_; |
594 | 595 |
595 ViewProps props_; | 596 ViewProps props_; |
596 | 597 |
597 DISALLOW_COPY_AND_ASSIGN(WidgetWin); | 598 DISALLOW_COPY_AND_ASSIGN(WidgetWin); |
598 }; | 599 }; |
599 | 600 |
600 } // namespace views | 601 } // namespace views |
601 | 602 |
602 #endif // VIEWS_WIDGET_WIDGET_WIN_H_ | 603 #endif // VIEWS_WIDGET_WIDGET_WIN_H_ |
OLD | NEW |