| 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> |
| 11 #include <map> | 11 #include <map> |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <set> | 13 #include <set> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
| 17 #include "base/lazy_instance.h" | 17 #include "base/lazy_instance.h" |
| 18 #include "base/macros.h" | 18 #include "base/macros.h" |
| 19 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
| 20 #include "base/strings/string16.h" | 20 #include "base/strings/string16.h" |
| 21 #include "base/win/scoped_gdi_object.h" | 21 #include "base/win/scoped_gdi_object.h" |
| 22 #include "base/win/win_util.h" | 22 #include "base/win/win_util.h" |
| 23 #include "ui/accessibility/ax_enums.h" | |
| 24 #include "ui/base/ui_base_types.h" | 23 #include "ui/base/ui_base_types.h" |
| 25 #include "ui/base/win/window_event_target.h" | 24 #include "ui/base/win/window_event_target.h" |
| 26 #include "ui/events/event.h" | 25 #include "ui/events/event.h" |
| 27 #include "ui/gfx/geometry/rect.h" | 26 #include "ui/gfx/geometry/rect.h" |
| 28 #include "ui/gfx/sequential_id_generator.h" | 27 #include "ui/gfx/sequential_id_generator.h" |
| 29 #include "ui/gfx/win/window_impl.h" | 28 #include "ui/gfx/win/window_impl.h" |
| 30 #include "ui/views/views_export.h" | 29 #include "ui/views/views_export.h" |
| 31 | 30 |
| 32 namespace gfx { | 31 namespace gfx { |
| 33 class Canvas; | 32 class Canvas; |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 | 676 |
| 678 // The factory used with BEGIN_SAFE_MSG_MAP_EX. | 677 // The factory used with BEGIN_SAFE_MSG_MAP_EX. |
| 679 base::WeakPtrFactory<HWNDMessageHandler> weak_factory_; | 678 base::WeakPtrFactory<HWNDMessageHandler> weak_factory_; |
| 680 | 679 |
| 681 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); | 680 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); |
| 682 }; | 681 }; |
| 683 | 682 |
| 684 } // namespace views | 683 } // namespace views |
| 685 | 684 |
| 686 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ | 685 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ |
| OLD | NEW |