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 "content/renderer/render_widget.h" | 5 #include "content/renderer/render_widget.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/strings/utf_string_conversions.h" | 21 #include "base/strings/utf_string_conversions.h" |
22 #include "base/sys_info.h" | 22 #include "base/sys_info.h" |
23 #include "base/trace_event/trace_event.h" | 23 #include "base/trace_event/trace_event.h" |
24 #include "base/trace_event/trace_event_synthetic_delay.h" | 24 #include "base/trace_event/trace_event_synthetic_delay.h" |
25 #include "build/build_config.h" | 25 #include "build/build_config.h" |
26 #include "cc/output/copy_output_request.h" | 26 #include "cc/output/copy_output_request.h" |
27 #include "cc/output/output_surface.h" | 27 #include "cc/output/output_surface.h" |
28 #include "cc/scheduler/begin_frame_source.h" | 28 #include "cc/scheduler/begin_frame_source.h" |
29 #include "content/common/content_switches_internal.h" | 29 #include "content/common/content_switches_internal.h" |
30 #include "content/common/input/synthetic_gesture_packet.h" | 30 #include "content/common/input/synthetic_gesture_packet.h" |
31 #include "content/common/input/web_input_event_traits.h" | |
32 #include "content/common/input_messages.h" | 31 #include "content/common/input_messages.h" |
33 #include "content/common/swapped_out_messages.h" | 32 #include "content/common/swapped_out_messages.h" |
34 #include "content/common/text_input_state.h" | 33 #include "content/common/text_input_state.h" |
35 #include "content/common/view_messages.h" | 34 #include "content/common/view_messages.h" |
36 #include "content/public/common/content_features.h" | 35 #include "content/public/common/content_features.h" |
37 #include "content/public/common/content_switches.h" | 36 #include "content/public/common/content_switches.h" |
38 #include "content/public/common/context_menu_params.h" | 37 #include "content/public/common/context_menu_params.h" |
39 #include "content/renderer/cursor_utils.h" | 38 #include "content/renderer/cursor_utils.h" |
40 #include "content/renderer/devtools/render_widget_screen_metrics_emulator.h" | 39 #include "content/renderer/devtools/render_widget_screen_metrics_emulator.h" |
41 #include "content/renderer/external_popup_menu.h" | 40 #include "content/renderer/external_popup_menu.h" |
(...skipping 2023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2065 void RenderWidget::requestPointerUnlock() { | 2064 void RenderWidget::requestPointerUnlock() { |
2066 mouse_lock_dispatcher_->UnlockMouse(webwidget_mouse_lock_target_.get()); | 2065 mouse_lock_dispatcher_->UnlockMouse(webwidget_mouse_lock_target_.get()); |
2067 } | 2066 } |
2068 | 2067 |
2069 bool RenderWidget::isPointerLocked() { | 2068 bool RenderWidget::isPointerLocked() { |
2070 return mouse_lock_dispatcher_->IsMouseLockedTo( | 2069 return mouse_lock_dispatcher_->IsMouseLockedTo( |
2071 webwidget_mouse_lock_target_.get()); | 2070 webwidget_mouse_lock_target_.get()); |
2072 } | 2071 } |
2073 | 2072 |
2074 } // namespace content | 2073 } // namespace content |
OLD | NEW |