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 <stddef.h> | 10 #include <stddef.h> |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "ui/accessibility/ax_enums.h" | 23 #include "ui/accessibility/ax_enums.h" |
24 #include "ui/base/ui_base_types.h" | 24 #include "ui/base/ui_base_types.h" |
25 #include "ui/base/win/window_event_target.h" | 25 #include "ui/base/win/window_event_target.h" |
26 #include "ui/events/event.h" | 26 #include "ui/events/event.h" |
27 #include "ui/gfx/geometry/rect.h" | 27 #include "ui/gfx/geometry/rect.h" |
28 #include "ui/gfx/sequential_id_generator.h" | 28 #include "ui/gfx/sequential_id_generator.h" |
29 #include "ui/gfx/win/window_impl.h" | 29 #include "ui/gfx/win/window_impl.h" |
30 #include "ui/views/views_export.h" | 30 #include "ui/views/views_export.h" |
31 | 31 |
32 namespace gfx { | 32 namespace gfx { |
33 class Canvas; | |
34 class ImageSkia; | 33 class ImageSkia; |
35 class Insets; | 34 class Insets; |
36 namespace win { | 35 namespace win { |
37 class DirectManipulationHelper; | 36 class DirectManipulationHelper; |
38 } // namespace win | 37 } // namespace win |
39 } // namespace gfx | 38 } // namespace gfx |
40 | 39 |
41 namespace ui { | 40 namespace ui { |
42 class ViewProp; | 41 class ViewProp; |
43 } | 42 } |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 | 700 |
702 // The factory used with BEGIN_SAFE_MSG_MAP_EX. | 701 // The factory used with BEGIN_SAFE_MSG_MAP_EX. |
703 base::WeakPtrFactory<HWNDMessageHandler> weak_factory_; | 702 base::WeakPtrFactory<HWNDMessageHandler> weak_factory_; |
704 | 703 |
705 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); | 704 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); |
706 }; | 705 }; |
707 | 706 |
708 } // namespace views | 707 } // namespace views |
709 | 708 |
710 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ | 709 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ |
OLD | NEW |