| 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> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "ui/base/win/touch_input.h" | 27 #include "ui/base/win/touch_input.h" |
| 28 #include "ui/events/event.h" | 28 #include "ui/events/event.h" |
| 29 #include "ui/events/event_utils.h" | 29 #include "ui/events/event_utils.h" |
| 30 #include "ui/events/keycodes/keyboard_code_conversion_win.h" | 30 #include "ui/events/keycodes/keyboard_code_conversion_win.h" |
| 31 #include "ui/events/win/system_event_state_lookup.h" | 31 #include "ui/events/win/system_event_state_lookup.h" |
| 32 #include "ui/gfx/canvas.h" | 32 #include "ui/gfx/canvas.h" |
| 33 #include "ui/gfx/geometry/insets.h" | 33 #include "ui/gfx/geometry/insets.h" |
| 34 #include "ui/gfx/icon_util.h" | 34 #include "ui/gfx/icon_util.h" |
| 35 #include "ui/gfx/path.h" | 35 #include "ui/gfx/path.h" |
| 36 #include "ui/gfx/path_win.h" | 36 #include "ui/gfx/path_win.h" |
| 37 #include "ui/gfx/screen.h" | |
| 38 #include "ui/gfx/win/direct_manipulation.h" | 37 #include "ui/gfx/win/direct_manipulation.h" |
| 39 #include "ui/gfx/win/hwnd_util.h" | 38 #include "ui/gfx/win/hwnd_util.h" |
| 40 #include "ui/gfx/win/rendering_window_manager.h" | 39 #include "ui/gfx/win/rendering_window_manager.h" |
| 41 #include "ui/native_theme/native_theme_win.h" | 40 #include "ui/native_theme/native_theme_win.h" |
| 42 #include "ui/views/views_delegate.h" | 41 #include "ui/views/views_delegate.h" |
| 43 #include "ui/views/widget/monitor_win.h" | 42 #include "ui/views/widget/monitor_win.h" |
| 44 #include "ui/views/widget/widget_hwnd_utils.h" | 43 #include "ui/views/widget/widget_hwnd_utils.h" |
| 45 #include "ui/views/win/fullscreen_handler.h" | 44 #include "ui/views/win/fullscreen_handler.h" |
| 46 #include "ui/views/win/hwnd_message_handler_delegate.h" | 45 #include "ui/views/win/hwnd_message_handler_delegate.h" |
| 47 #include "ui/views/win/scoped_fullscreen_visibility.h" | 46 #include "ui/views/win/scoped_fullscreen_visibility.h" |
| (...skipping 2631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2679 delegate_->HandleClientSizeChanged(GetClientAreaBounds().size()); | 2678 delegate_->HandleClientSizeChanged(GetClientAreaBounds().size()); |
| 2680 ResetWindowRegion(false, true); | 2679 ResetWindowRegion(false, true); |
| 2681 } | 2680 } |
| 2682 | 2681 |
| 2683 if (direct_manipulation_helper_) | 2682 if (direct_manipulation_helper_) |
| 2684 direct_manipulation_helper_->SetBounds(bounds_in_pixels); | 2683 direct_manipulation_helper_->SetBounds(bounds_in_pixels); |
| 2685 } | 2684 } |
| 2686 | 2685 |
| 2687 | 2686 |
| 2688 } // namespace views | 2687 } // namespace views |
| OLD | NEW |