OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_NATIVE_WIDGET_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/scoped_vector.h" | 11 #include "base/memory/scoped_vector.h" |
12 #include "base/win/scoped_comptr.h" | 12 #include "base/win/scoped_comptr.h" |
13 #include "base/win/win_util.h" | 13 #include "base/win/win_util.h" |
14 #include "ui/base/win/window_impl.h" | 14 #include "ui/gfx/win/window_impl.h" |
15 #include "ui/views/widget/native_widget_private.h" | 15 #include "ui/views/widget/native_widget_private.h" |
16 #include "ui/views/win/hwnd_message_handler_delegate.h" | 16 #include "ui/views/win/hwnd_message_handler_delegate.h" |
17 | 17 |
18 namespace ui { | 18 namespace ui { |
19 class Compositor; | 19 class Compositor; |
20 class ViewProp; | 20 class ViewProp; |
21 } | 21 } |
22 | 22 |
23 namespace gfx { | 23 namespace gfx { |
24 class Canvas; | 24 class Canvas; |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 bool has_non_client_view_; | 267 bool has_non_client_view_; |
268 | 268 |
269 scoped_ptr<HWNDMessageHandler> message_handler_; | 269 scoped_ptr<HWNDMessageHandler> message_handler_; |
270 | 270 |
271 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); | 271 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); |
272 }; | 272 }; |
273 | 273 |
274 } // namespace views | 274 } // namespace views |
275 | 275 |
276 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ | 276 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
OLD | NEW |