| 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 #include "ui/views/win/hwnd_message_handler.h" | 5 #include "ui/views/win/hwnd_message_handler.h" |
| 6 | 6 |
| 7 #include <dwmapi.h> | 7 #include <dwmapi.h> |
| 8 #include <oleacc.h> | 8 #include <oleacc.h> |
| 9 #include <shellapi.h> | 9 #include <shellapi.h> |
| 10 #include <tchar.h> | 10 #include <tchar.h> |
| 11 #include <tpcshrd.h> | 11 #include <tpcshrd.h> |
| 12 | 12 |
| 13 #include "base/bind.h" | 13 #include "base/bind.h" |
| 14 #include "base/bind_helpers.h" | 14 #include "base/bind_helpers.h" |
| 15 #include "base/debug/alias.h" | 15 #include "base/debug/alias.h" |
| 16 #include "base/macros.h" |
| 16 #include "base/trace_event/trace_event.h" | 17 #include "base/trace_event/trace_event.h" |
| 17 #include "base/win/scoped_gdi_object.h" | 18 #include "base/win/scoped_gdi_object.h" |
| 18 #include "base/win/windows_version.h" | 19 #include "base/win/windows_version.h" |
| 19 #include "ui/base/touch/touch_enabled.h" | 20 #include "ui/base/touch/touch_enabled.h" |
| 20 #include "ui/base/view_prop.h" | 21 #include "ui/base/view_prop.h" |
| 21 #include "ui/base/win/internal_constants.h" | 22 #include "ui/base/win/internal_constants.h" |
| 22 #include "ui/base/win/lock_state.h" | 23 #include "ui/base/win/lock_state.h" |
| 23 #include "ui/base/win/mouse_wheel_util.h" | 24 #include "ui/base/win/mouse_wheel_util.h" |
| 24 #include "ui/base/win/shell.h" | 25 #include "ui/base/win/shell.h" |
| 25 #include "ui/base/win/touch_input.h" | 26 #include "ui/base/win/touch_input.h" |
| (...skipping 2540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2566 | 2567 |
| 2567 default: | 2568 default: |
| 2568 left_button_down_on_caption_ = false; | 2569 left_button_down_on_caption_ = false; |
| 2569 break; | 2570 break; |
| 2570 } | 2571 } |
| 2571 return handled; | 2572 return handled; |
| 2572 } | 2573 } |
| 2573 | 2574 |
| 2574 | 2575 |
| 2575 } // namespace views | 2576 } // namespace views |
| OLD | NEW |