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_WIN_HWND_MESSAGE_HANDLER_H_ | 5 #ifndef UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ |
6 #define UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ | 6 #define UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 | 9 |
10 #include <set> | 10 #include <set> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
17 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
18 #include "base/win/scoped_gdi_object.h" | 18 #include "base/win/scoped_gdi_object.h" |
19 #include "base/win/win_util.h" | 19 #include "base/win/win_util.h" |
20 #include "ui/accessibility/ax_enums.h" | 20 #include "ui/accessibility/ax_enums.h" |
21 #include "ui/base/ui_base_types.h" | 21 #include "ui/base/ui_base_types.h" |
22 #include "ui/base/win/window_event_target.h" | 22 #include "ui/base/win/window_event_target.h" |
23 #include "ui/events/event.h" | 23 #include "ui/events/event.h" |
24 #include "ui/gfx/rect.h" | 24 #include "ui/gfx/geometry/rect.h" |
25 #include "ui/gfx/sequential_id_generator.h" | 25 #include "ui/gfx/sequential_id_generator.h" |
26 #include "ui/gfx/win/window_impl.h" | 26 #include "ui/gfx/win/window_impl.h" |
27 #include "ui/views/ime/input_method_delegate.h" | 27 #include "ui/views/ime/input_method_delegate.h" |
28 #include "ui/views/views_export.h" | 28 #include "ui/views/views_export.h" |
29 | 29 |
30 namespace gfx { | 30 namespace gfx { |
31 class Canvas; | 31 class Canvas; |
32 class ImageSkia; | 32 class ImageSkia; |
33 class Insets; | 33 class Insets; |
34 } | 34 } |
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 // This member variable is set to true if the window is transitioning to | 628 // This member variable is set to true if the window is transitioning to |
629 // glass. Defaults to false. | 629 // glass. Defaults to false. |
630 bool dwm_transition_desired_; | 630 bool dwm_transition_desired_; |
631 | 631 |
632 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); | 632 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); |
633 }; | 633 }; |
634 | 634 |
635 } // namespace views | 635 } // namespace views |
636 | 636 |
637 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ | 637 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ |
OLD | NEW |