[email protected] | 60a5007 | 2012-01-11 02:05:35 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 4 | |
[email protected] | 2cff005 | 2011-03-18 16:51:44 | [diff] [blame] | 5 | #include "content/renderer/render_widget.h" |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 6 | |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 7 | #include <cmath> |
| 8 | #include <limits> |
dcheng | cedca561 | 2016-04-09 01:40:15 | [diff] [blame] | 9 | #include <memory> |
dcheng | 07945f63 | 2015-12-26 07:59:32 | [diff] [blame] | 10 | #include <utility> |
| 11 | |
[email protected] | c27dd4f | 2014-05-22 18:05:19 | [diff] [blame] | 12 | #include "base/auto_reset.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 13 | #include "base/base_switches.h" |
[email protected] | 32876ae | 2011-11-15 22:25:21 | [diff] [blame] | 14 | #include "base/bind.h" |
Sebastien Marchand | 17fa278 | 2019-01-25 19:28:10 | [diff] [blame] | 15 | #include "base/bind_helpers.h" |
[email protected] | 4fb6684 | 2009-12-04 21:41:00 | [diff] [blame] | 16 | #include "base/command_line.h" |
changwan | 7ded375 | 2016-03-09 23:25:12 | [diff] [blame] | 17 | #include "base/feature_list.h" |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 18 | #include "base/logging.h" |
avi | 1023d01 | 2015-12-25 02:39:14 | [diff] [blame] | 19 | #include "base/macros.h" |
dcheng | cedca561 | 2016-04-09 01:40:15 | [diff] [blame] | 20 | #include "base/memory/ptr_util.h" |
[email protected] | b256eca | 2013-07-11 10:57:40 | [diff] [blame] | 21 | #include "base/memory/singleton.h" |
asvitkine | 8d51e9d | 2016-09-02 23:55:43 | [diff] [blame] | 22 | #include "base/metrics/histogram_macros.h" |
[email protected] | aa4117f | 2011-12-09 22:19:21 | [diff] [blame] | 23 | #include "base/stl_util.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 24 | #include "base/strings/string_number_conversions.h" |
[email protected] | 74ebfb1 | 2013-06-07 20:48:00 | [diff] [blame] | 25 | #include "base/strings/utf_string_conversions.h" |
Sebastien Marchand | 75a7cdf | 2018-11-13 23:47:03 | [diff] [blame] | 26 | #include "base/system/sys_info.h" |
fdoray | a19b770 | 2016-12-23 14:19:31 | [diff] [blame] | 27 | #include "base/threading/thread_task_runner_handle.h" |
primiano | 9e38d55 | 2015-01-28 04:18:01 | [diff] [blame] | 28 | #include "base/trace_event/trace_event.h" |
[email protected] | 661eb9d | 2009-02-03 02:11:48 | [diff] [blame] | 29 | #include "build/build_config.h" |
loyso | 6e6efc4 | 2017-01-21 02:23:03 | [diff] [blame] | 30 | #include "cc/animation/animation_host.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 31 | #include "cc/base/switches.h" |
xidachen | fa0199e7 | 2017-05-11 11:34:26 | [diff] [blame] | 32 | #include "cc/input/touch_action.h" |
danakj | ba65a091 | 2017-09-21 16:38:42 | [diff] [blame] | 33 | #include "cc/trees/layer_tree_frame_sink.h" |
loyso | 6e6efc4 | 2017-01-21 02:23:03 | [diff] [blame] | 34 | #include "cc/trees/layer_tree_host.h" |
danakj | 4c98765 | 2018-07-05 15:49:41 | [diff] [blame] | 35 | #include "cc/trees/ukm_manager.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 36 | #include "components/viz/common/features.h" |
Fady Samuel | c645ffe | 2017-07-24 17:28:20 | [diff] [blame] | 37 | #include "components/viz/common/frame_sinks/begin_frame_source.h" |
danakj | f20f450 | 2017-09-26 17:13:31 | [diff] [blame] | 38 | #include "components/viz/common/frame_sinks/copy_output_request.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 39 | #include "components/viz/common/switches.h" |
| 40 | #include "content/common/content_switches_internal.h" |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 41 | #include "content/common/drag_event_source_info.h" |
| 42 | #include "content/common/drag_messages.h" |
jonross | a2ff4f8 | 2018-02-16 17:27:46 | [diff] [blame] | 43 | #include "content/common/render_frame_metadata.mojom.h" |
jcivelli | ae1560a | 2016-11-01 22:40:23 | [diff] [blame] | 44 | #include "content/common/render_message_filter.mojom.h" |
Nasko Oskov | f97e8b0 | 2017-07-25 02:45:42 | [diff] [blame] | 45 | #include "content/common/swapped_out_messages.h" |
ekaramad | 9053e57b | 2016-04-26 20:00:38 | [diff] [blame] | 46 | #include "content/common/text_input_state.h" |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 47 | #include "content/common/widget_messages.h" |
mlamouri | afca06dd | 2017-01-27 23:35:18 | [diff] [blame] | 48 | #include "content/public/common/content_client.h" |
changwan | 7ded375 | 2016-03-09 23:25:12 | [diff] [blame] | 49 | #include "content/public/common/content_features.h" |
[email protected] | c08950d2 | 2011-10-13 22:20:29 | [diff] [blame] | 50 | #include "content/public/common/content_switches.h" |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 51 | #include "content/public/common/context_menu_params.h" |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 52 | #include "content/public/common/drop_data.h" |
Khushal | 3e96e66 | 2017-10-30 23:16:50 | [diff] [blame] | 53 | #include "content/public/common/service_names.mojom.h" |
Jaebaek Seo | 655110e | 2017-12-19 23:27:39 | [diff] [blame] | 54 | #include "content/public/common/use_zoom_for_dsf_policy.h" |
mlamouri | afca06dd | 2017-01-27 23:35:18 | [diff] [blame] | 55 | #include "content/public/renderer/content_renderer_client.h" |
Avi Drissman | 07d2245 | 2019-03-25 17:56:39 | [diff] [blame] | 56 | #include "content/public/renderer/render_thread.h" |
Saman Sami | d189e5dfd | 2017-12-20 22:55:31 | [diff] [blame] | 57 | #include "content/renderer/browser_plugin/browser_plugin.h" |
Sadrul Habib Chowdhury | 31c9871 | 2018-12-11 04:15:13 | [diff] [blame] | 58 | #include "content/renderer/compositor/layer_tree_view.h" |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 59 | #include "content/renderer/drop_data_builder.h" |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 60 | #include "content/renderer/external_popup_menu.h" |
Sadrul Habib Chowdhury | 31c9871 | 2018-12-11 04:15:13 | [diff] [blame] | 61 | #include "content/renderer/frame_swap_message_queue.h" |
[email protected] | 66fca5bc | 2013-05-23 06:58:29 | [diff] [blame] | 62 | #include "content/renderer/ime_event_guard.h" |
dtapuska | 9ec1a91 | 2017-04-21 15:18:31 | [diff] [blame] | 63 | #include "content/renderer/input/main_thread_event_queue.h" |
Dave Tapuska | 9db8084 | 2017-07-24 17:24:26 | [diff] [blame] | 64 | #include "content/renderer/input/widget_input_handler_manager.h" |
[email protected] | adab233 | 2013-07-25 18:04:32 | [diff] [blame] | 65 | #include "content/renderer/pepper/pepper_plugin_instance_impl.h" |
Sadrul Habib Chowdhury | 31c9871 | 2018-12-11 04:15:13 | [diff] [blame] | 66 | #include "content/renderer/queue_message_swap_promise.h" |
[email protected] | bffc830 | 2014-01-23 20:52:16 | [diff] [blame] | 67 | #include "content/renderer/render_frame_impl.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 68 | #include "content/renderer/render_frame_metadata_observer_impl.h" |
[email protected] | e3244ed | 2014-06-20 20:04:27 | [diff] [blame] | 69 | #include "content/renderer/render_frame_proxy.h" |
[email protected] | 8704f89b | 2011-04-15 00:30:05 | [diff] [blame] | 70 | #include "content/renderer/render_process.h" |
[email protected] | f1a29a0 | 2011-10-06 23:08:44 | [diff] [blame] | 71 | #include "content/renderer/render_thread_impl.h" |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 72 | #include "content/renderer/render_view_impl.h" |
Abhijeet Kandalkar | dccbd61 | 2019-04-08 17:37:09 | [diff] [blame] | 73 | #include "content/renderer/render_widget_screen_metrics_emulator.h" |
tfarina | 556a723 | 2014-10-05 01:02:09 | [diff] [blame] | 74 | #include "content/renderer/renderer_blink_platform_impl.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 75 | #include "gpu/command_buffer/service/gpu_switches.h" |
ekaramad | 330ba423 | 2016-09-23 17:57:47 | [diff] [blame] | 76 | #include "ipc/ipc_message_start.h" |
[email protected] | 48495594 | 2010-08-19 16:13:18 | [diff] [blame] | 77 | #include "ipc/ipc_sync_message.h" |
Antoine Labour | e55c9ef8 | 2017-11-10 18:51:23 | [diff] [blame] | 78 | #include "ipc/ipc_sync_message_filter.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 79 | #include "media/base/media_switches.h" |
Scott Violet | 02e38b9 | 2018-03-27 23:42:14 | [diff] [blame] | 80 | #include "ppapi/buildflags/buildflags.h" |
[email protected] | 661eb9d | 2009-02-03 02:11:48 | [diff] [blame] | 81 | #include "skia/ext/platform_canvas.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 82 | #include "third_party/blink/public/platform/file_path_conversion.h" |
Hajime Hoshi | 315a61f | 2018-08-14 17:27:28 | [diff] [blame] | 83 | #include "third_party/blink/public/platform/platform.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 84 | #include "third_party/blink/public/platform/scheduler/web_render_widget_scheduling_state.h" |
Yuta Kitamura | deb91bb | 2018-05-29 05:53:20 | [diff] [blame] | 85 | #include "third_party/blink/public/platform/scheduler/web_thread_scheduler.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 86 | #include "third_party/blink/public/platform/web_cursor_info.h" |
| 87 | #include "third_party/blink/public/platform/web_drag_data.h" |
| 88 | #include "third_party/blink/public/platform/web_drag_operation.h" |
| 89 | #include "third_party/blink/public/platform/web_mouse_event.h" |
| 90 | #include "third_party/blink/public/platform/web_point.h" |
| 91 | #include "third_party/blink/public/platform/web_rect.h" |
| 92 | #include "third_party/blink/public/platform/web_runtime_features.h" |
| 93 | #include "third_party/blink/public/platform/web_size.h" |
| 94 | #include "third_party/blink/public/platform/web_string.h" |
| 95 | #include "third_party/blink/public/web/web_autofill_client.h" |
| 96 | #include "third_party/blink/public/web/web_device_emulation_params.h" |
| 97 | #include "third_party/blink/public/web/web_frame_widget.h" |
| 98 | #include "third_party/blink/public/web/web_input_method_controller.h" |
| 99 | #include "third_party/blink/public/web/web_local_frame.h" |
| 100 | #include "third_party/blink/public/web/web_node.h" |
| 101 | #include "third_party/blink/public/web/web_page_popup.h" |
| 102 | #include "third_party/blink/public/web/web_popup_menu_info.h" |
| 103 | #include "third_party/blink/public/web/web_range.h" |
| 104 | #include "third_party/blink/public/web/web_settings.h" |
| 105 | #include "third_party/blink/public/web/web_view.h" |
| 106 | #include "third_party/blink/public/web/web_widget.h" |
[email protected] | d353541f | 2012-05-03 22:45:41 | [diff] [blame] | 107 | #include "third_party/skia/include/core/SkShader.h" |
Maksim Sisov | a33072d2 | 2019-01-24 15:44:25 | [diff] [blame] | 108 | #include "ui/base/clipboard/clipboard_constants.h" |
Scott Violet | 8ff9c30 | 2018-02-22 22:28:35 | [diff] [blame] | 109 | #include "ui/base/ui_base_features.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 110 | #include "ui/base/ui_base_switches.h" |
dtapuska | 97286c88 | 2017-02-24 23:14:43 | [diff] [blame] | 111 | #include "ui/events/base_event_utils.h" |
tfarina | 655f81d | 2014-12-23 02:38:50 | [diff] [blame] | 112 | #include "ui/gfx/geometry/point_conversions.h" |
tfarina | 3b0452d | 2014-12-31 15:20:09 | [diff] [blame] | 113 | #include "ui/gfx/geometry/rect_conversions.h" |
tfarina | ebe974f0 | 2015-01-03 04:25:32 | [diff] [blame] | 114 | #include "ui/gfx/geometry/size_conversions.h" |
[email protected] | 1835b9e | 2012-02-28 13:12:48 | [diff] [blame] | 115 | #include "ui/gfx/skia_util.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 116 | #include "ui/gfx/switches.h" |
[email protected] | c9e2cbbb | 2012-05-12 21:17:27 | [diff] [blame] | 117 | #include "ui/gl/gl_switches.h" |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 118 | #include "ui/native_theme/native_theme_features.h" |
| 119 | #include "ui/native_theme/overlay_scrollbar_constants_aura.h" |
[email protected] | d353541f | 2012-05-03 22:45:41 | [diff] [blame] | 120 | #include "ui/surface/transport_dib.h" |
[email protected] | 661eb9d | 2009-02-03 02:11:48 | [diff] [blame] | 121 | |
[email protected] | eeb9311 | 2013-05-01 19:41:10 | [diff] [blame] | 122 | #if defined(OS_ANDROID) |
[email protected] | cefe9b15 | 2014-03-27 18:16:15 | [diff] [blame] | 123 | #include <android/keycodes.h> |
wjmaclean | 1d97062 | 2017-01-21 22:28:24 | [diff] [blame] | 124 | #include "base/time/time.h" |
[email protected] | eeb9311 | 2013-05-01 19:41:10 | [diff] [blame] | 125 | #endif |
| 126 | |
[email protected] | 661eb9d | 2009-02-03 02:11:48 | [diff] [blame] | 127 | #if defined(OS_POSIX) |
[email protected] | d5282e7 | 2009-05-13 13:16:52 | [diff] [blame] | 128 | #include "third_party/skia/include/core/SkMallocPixelRef.h" |
[email protected] | d353541f | 2012-05-03 22:45:41 | [diff] [blame] | 129 | #include "third_party/skia/include/core/SkPixelRef.h" |
[email protected] | 661eb9d | 2009-02-03 02:11:48 | [diff] [blame] | 130 | #endif // defined(OS_POSIX) |
[email protected] | 8085dbc8 | 2008-09-26 22:53:44 | [diff] [blame] | 131 | |
ekaramad | 330ba423 | 2016-09-23 17:57:47 | [diff] [blame] | 132 | #if defined(OS_MACOSX) |
| 133 | #include "content/renderer/text_input_client_observer.h" |
| 134 | #endif |
| 135 | |
Ryan Landay | 9e42fd74 | 2017-08-12 01:59:11 | [diff] [blame] | 136 | using blink::WebImeTextSpan; |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 137 | using blink::WebCursorInfo; |
[email protected] | 1919368 | 2014-04-03 15:01:43 | [diff] [blame] | 138 | using blink::WebDeviceEmulationParams; |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 139 | using blink::WebDragOperation; |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 140 | using blink::WebDragOperationsMask; |
| 141 | using blink::WebDragData; |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 142 | using blink::WebFrameWidget; |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 143 | using blink::WebGestureEvent; |
| 144 | using blink::WebInputEvent; |
dtapuska | 5d2e9c3 | 2015-12-03 16:39:49 | [diff] [blame] | 145 | using blink::WebInputEventResult; |
ekaramad | 2daaf67 | 2016-11-10 20:29:01 | [diff] [blame] | 146 | using blink::WebInputMethodController; |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 147 | using blink::WebLocalFrame; |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 148 | using blink::WebMouseEvent; |
| 149 | using blink::WebMouseWheelEvent; |
| 150 | using blink::WebNavigationPolicy; |
donnd | a070f3c | 2015-01-16 19:54:11 | [diff] [blame] | 151 | using blink::WebNode; |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 152 | using blink::WebPagePopup; |
dglazkov | e353a37 | 2016-09-01 01:33:48 | [diff] [blame] | 153 | using blink::WebRange; |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 154 | using blink::WebRect; |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 155 | using blink::WebSize; |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 156 | using blink::WebString; |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 157 | using blink::WebTextDirection; |
| 158 | using blink::WebTouchEvent; |
[email protected] | f8ed472 | 2013-12-03 03:27:25 | [diff] [blame] | 159 | using blink::WebTouchPoint; |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 160 | using blink::WebVector; |
| 161 | using blink::WebWidget; |
[email protected] | e9ff79c | 2012-10-19 21:31:26 | [diff] [blame] | 162 | |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 163 | namespace content { |
| 164 | |
[email protected] | 6a4d7f6 | 2013-01-07 21:32:13 | [diff] [blame] | 165 | namespace { |
[email protected] | b256eca | 2013-07-11 10:57:40 | [diff] [blame] | 166 | |
Albert J. Wong | 2727e8a8 | 2019-02-15 16:56:11 | [diff] [blame] | 167 | RenderWidget::CreateRenderWidgetFunction g_create_render_widget_for_frame = |
| 168 | nullptr; |
| 169 | |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 170 | using RoutingIDWidgetMap = std::map<int32_t, RenderWidget*>; |
| 171 | base::LazyInstance<RoutingIDWidgetMap>::Leaky g_routing_id_widget_map = |
| 172 | LAZY_INSTANCE_INITIALIZER; |
| 173 | |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 174 | const base::Feature kUnpremultiplyAndDitherLowBitDepthTiles = { |
| 175 | "UnpremultiplyAndDitherLowBitDepthTiles", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 176 | |
[email protected] | b256eca | 2013-07-11 10:57:40 | [diff] [blame] | 177 | typedef std::map<std::string, ui::TextInputMode> TextInputModeMap; |
| 178 | |
AJITH KUMAR V | 041c0b0 | 2017-08-08 10:39:20 | [diff] [blame] | 179 | static const int kInvalidNextPreviousFlagsValue = -1; |
yiyix | 6b90ef5 | 2018-10-09 19:55:30 | [diff] [blame] | 180 | static const char* kOOPIF = "OOPIF"; |
| 181 | static const char* kRenderer = "Renderer"; |
AJITH KUMAR V | 041c0b0 | 2017-08-08 10:39:20 | [diff] [blame] | 182 | |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 183 | class WebWidgetLockTarget : public content::MouseLockDispatcher::LockTarget { |
| 184 | public: |
| 185 | explicit WebWidgetLockTarget(blink::WebWidget* webwidget) |
| 186 | : webwidget_(webwidget) {} |
| 187 | |
| 188 | void OnLockMouseACK(bool succeeded) override { |
| 189 | if (succeeded) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 190 | webwidget_->DidAcquirePointerLock(); |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 191 | else |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 192 | webwidget_->DidNotAcquirePointerLock(); |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 193 | } |
| 194 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 195 | void OnMouseLockLost() override { webwidget_->DidLosePointerLock(); } |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 196 | |
| 197 | bool HandleMouseLockedInputEvent(const blink::WebMouseEvent& event) override { |
| 198 | // The WebWidget handles mouse lock in Blink's handleInputEvent(). |
| 199 | return false; |
| 200 | } |
| 201 | |
| 202 | private: |
| 203 | blink::WebWidget* webwidget_; |
| 204 | }; |
| 205 | |
Stephen Chenney | d56b538 | 2019-01-29 00:37:02 | [diff] [blame] | 206 | class ScopedUkmRafAlignedInputTimer { |
| 207 | public: |
| 208 | explicit ScopedUkmRafAlignedInputTimer(blink::WebWidget* webwidget) |
| 209 | : webwidget_(webwidget) { |
| 210 | webwidget_->BeginRafAlignedInput(); |
| 211 | } |
| 212 | |
| 213 | ~ScopedUkmRafAlignedInputTimer() { webwidget_->EndRafAlignedInput(); } |
| 214 | |
| 215 | private: |
| 216 | blink::WebWidget* webwidget_; |
| 217 | |
| 218 | DISALLOW_COPY_AND_ASSIGN(ScopedUkmRafAlignedInputTimer); |
| 219 | }; |
| 220 | |
dglazkov | 97b6c2b | 2016-10-25 17:35:55 | [diff] [blame] | 221 | bool IsDateTimeInput(ui::TextInputType type) { |
| 222 | return type == ui::TEXT_INPUT_TYPE_DATE || |
| 223 | type == ui::TEXT_INPUT_TYPE_DATE_TIME || |
| 224 | type == ui::TEXT_INPUT_TYPE_DATE_TIME_LOCAL || |
| 225 | type == ui::TEXT_INPUT_TYPE_MONTH || |
| 226 | type == ui::TEXT_INPUT_TYPE_TIME || type == ui::TEXT_INPUT_TYPE_WEEK; |
| 227 | } |
| 228 | |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 229 | WebDragData DropMetaDataToWebDragData( |
| 230 | const std::vector<DropData::Metadata>& drop_meta_data) { |
| 231 | std::vector<WebDragData::Item> item_list; |
| 232 | for (const auto& meta_data_item : drop_meta_data) { |
| 233 | if (meta_data_item.kind == DropData::Kind::STRING) { |
| 234 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 235 | item.storage_type = WebDragData::Item::kStorageTypeString; |
| 236 | item.string_type = WebString::FromUTF16(meta_data_item.mime_type); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 237 | // Have to pass a dummy URL here instead of an empty URL because the |
| 238 | // DropData received by browser_plugins goes through a round trip: |
| 239 | // DropData::MetaData --> WebDragData-->DropData. In the end, DropData |
| 240 | // will contain an empty URL (which means no URL is dragged) if the URL in |
| 241 | // WebDragData is empty. |
Maksim Sisov | a33072d2 | 2019-01-24 15:44:25 | [diff] [blame] | 242 | if (base::EqualsASCII(meta_data_item.mime_type, ui::kMimeTypeURIList)) { |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 243 | item.string_data = WebString::FromUTF8("about:dragdrop-placeholder"); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 244 | } |
| 245 | item_list.push_back(item); |
| 246 | continue; |
| 247 | } |
| 248 | |
| 249 | // TODO(hush): crbug.com/584789. Blink needs to support creating a file with |
| 250 | // just the mimetype. This is needed to drag files to WebView on Android |
| 251 | // platform. |
| 252 | if ((meta_data_item.kind == DropData::Kind::FILENAME) && |
| 253 | !meta_data_item.filename.empty()) { |
| 254 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 255 | item.storage_type = WebDragData::Item::kStorageTypeFilename; |
| 256 | item.filename_data = blink::FilePathToWebString(meta_data_item.filename); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 257 | item_list.push_back(item); |
| 258 | continue; |
| 259 | } |
| 260 | |
| 261 | if (meta_data_item.kind == DropData::Kind::FILESYSTEMFILE) { |
| 262 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 263 | item.storage_type = WebDragData::Item::kStorageTypeFileSystemFile; |
| 264 | item.file_system_url = meta_data_item.file_system_url; |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 265 | item_list.push_back(item); |
| 266 | continue; |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | WebDragData result; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 271 | result.Initialize(); |
| 272 | result.SetItems(item_list); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 273 | return result; |
| 274 | } |
| 275 | |
| 276 | WebDragData DropDataToWebDragData(const DropData& drop_data) { |
| 277 | std::vector<WebDragData::Item> item_list; |
| 278 | |
| 279 | // These fields are currently unused when dragging into WebKit. |
| 280 | DCHECK(drop_data.download_metadata.empty()); |
| 281 | DCHECK(drop_data.file_contents.empty()); |
dcheng | 3dd8561 | 2017-02-08 10:46:23 | [diff] [blame] | 282 | DCHECK(drop_data.file_contents_content_disposition.empty()); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 283 | |
| 284 | if (!drop_data.text.is_null()) { |
| 285 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 286 | item.storage_type = WebDragData::Item::kStorageTypeString; |
Maksim Sisov | a33072d2 | 2019-01-24 15:44:25 | [diff] [blame] | 287 | item.string_type = WebString::FromUTF8(ui::kMimeTypeText); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 288 | item.string_data = WebString::FromUTF16(drop_data.text.string()); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 289 | item_list.push_back(item); |
| 290 | } |
| 291 | |
| 292 | if (!drop_data.url.is_empty()) { |
| 293 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 294 | item.storage_type = WebDragData::Item::kStorageTypeString; |
Maksim Sisov | a33072d2 | 2019-01-24 15:44:25 | [diff] [blame] | 295 | item.string_type = WebString::FromUTF8(ui::kMimeTypeURIList); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 296 | item.string_data = WebString::FromUTF8(drop_data.url.spec()); |
| 297 | item.title = WebString::FromUTF16(drop_data.url_title); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 298 | item_list.push_back(item); |
| 299 | } |
| 300 | |
| 301 | if (!drop_data.html.is_null()) { |
| 302 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 303 | item.storage_type = WebDragData::Item::kStorageTypeString; |
Maksim Sisov | a33072d2 | 2019-01-24 15:44:25 | [diff] [blame] | 304 | item.string_type = WebString::FromUTF8(ui::kMimeTypeHTML); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 305 | item.string_data = WebString::FromUTF16(drop_data.html.string()); |
| 306 | item.base_url = drop_data.html_base_url; |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 307 | item_list.push_back(item); |
| 308 | } |
| 309 | |
Darwin Huang | b2ad489 | 2019-05-13 20:15:39 | [diff] [blame] | 310 | for (const ui::FileInfo& filename : drop_data.filenames) { |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 311 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 312 | item.storage_type = WebDragData::Item::kStorageTypeFilename; |
Darwin Huang | b2ad489 | 2019-05-13 20:15:39 | [diff] [blame] | 313 | item.filename_data = blink::FilePathToWebString(filename.path); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 314 | item.display_name_data = |
Darwin Huang | b2ad489 | 2019-05-13 20:15:39 | [diff] [blame] | 315 | blink::FilePathToWebString(base::FilePath(filename.display_name)); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 316 | item_list.push_back(item); |
| 317 | } |
| 318 | |
Darwin Huang | b2ad489 | 2019-05-13 20:15:39 | [diff] [blame] | 319 | for (const DropData::FileSystemFileInfo& file : drop_data.file_system_files) { |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 320 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 321 | item.storage_type = WebDragData::Item::kStorageTypeFileSystemFile; |
Darwin Huang | b2ad489 | 2019-05-13 20:15:39 | [diff] [blame] | 322 | item.file_system_url = file.url; |
| 323 | item.file_system_file_size = file.size; |
| 324 | item.file_system_id = blink::WebString::FromASCII(file.filesystem_id); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 325 | item_list.push_back(item); |
| 326 | } |
| 327 | |
Darwin Huang | b2ad489 | 2019-05-13 20:15:39 | [diff] [blame] | 328 | for (const auto& data : drop_data.custom_data) { |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 329 | WebDragData::Item item; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 330 | item.storage_type = WebDragData::Item::kStorageTypeString; |
Darwin Huang | b2ad489 | 2019-05-13 20:15:39 | [diff] [blame] | 331 | item.string_type = WebString::FromUTF16(data.first); |
| 332 | item.string_data = WebString::FromUTF16(data.second); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 333 | item_list.push_back(item); |
| 334 | } |
| 335 | |
| 336 | WebDragData result; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 337 | result.Initialize(); |
| 338 | result.SetItems(item_list); |
| 339 | result.SetFilesystemId(WebString::FromUTF16(drop_data.filesystem_id)); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 340 | return result; |
| 341 | } |
| 342 | |
dtapuska | c4dd5be | 2016-10-25 15:11:10 | [diff] [blame] | 343 | ui::TextInputType ConvertWebTextInputType(blink::WebTextInputType type) { |
| 344 | // Check the type is in the range representable by ui::TextInputType. |
| 345 | DCHECK_LE(type, static_cast<int>(ui::TEXT_INPUT_TYPE_MAX)) |
| 346 | << "blink::WebTextInputType and ui::TextInputType not synchronized"; |
| 347 | return static_cast<ui::TextInputType>(type); |
| 348 | } |
| 349 | |
| 350 | ui::TextInputMode ConvertWebTextInputMode(blink::WebTextInputMode mode) { |
| 351 | // Check the mode is in the range representable by ui::TextInputMode. |
| 352 | DCHECK_LE(mode, static_cast<int>(ui::TEXT_INPUT_MODE_MAX)) |
| 353 | << "blink::WebTextInputMode and ui::TextInputMode not synchronized"; |
| 354 | return static_cast<ui::TextInputMode>(mode); |
| 355 | } |
| 356 | |
Mitsuru Oshima | 3c07b33 | 2018-02-06 04:56:50 | [diff] [blame] | 357 | // Returns true if the device scale is high enough that losing subpixel |
| 358 | // antialiasing won't have a noticeable effect on text quality. |
| 359 | static bool DeviceScaleEnsuresTextQuality(float device_scale_factor) { |
| 360 | #if defined(OS_ANDROID) || defined(OS_CHROMEOS) |
| 361 | // On Android, we never have subpixel antialiasing. On Chrome OS we prefer to |
| 362 | // composite all scrollers so that we get animated overlay scrollbars. |
| 363 | return true; |
| 364 | #else |
| 365 | // 1.5 is a common touchscreen tablet device scale factor. For such |
| 366 | // devices main thread antialiasing is a heavy burden. |
| 367 | return device_scale_factor >= 1.5f; |
| 368 | #endif |
| 369 | } |
| 370 | |
| 371 | static bool PreferCompositingToLCDText(CompositorDependencies* compositor_deps, |
| 372 | float device_scale_factor) { |
| 373 | const base::CommandLine& command_line = |
| 374 | *base::CommandLine::ForCurrentProcess(); |
| 375 | if (command_line.HasSwitch(switches::kDisablePreferCompositingToLCDText)) |
| 376 | return false; |
| 377 | if (command_line.HasSwitch(switches::kEnablePreferCompositingToLCDText)) |
| 378 | return true; |
| 379 | if (!compositor_deps->IsLcdTextEnabled()) |
| 380 | return true; |
| 381 | return DeviceScaleEnsuresTextQuality(device_scale_factor); |
| 382 | } |
| 383 | |
[email protected] | b256eca | 2013-07-11 10:57:40 | [diff] [blame] | 384 | } // namespace |
| 385 | |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 386 | // RenderWidget --------------------------------------------------------------- |
| 387 | |
Albert J. Wong | 2727e8a8 | 2019-02-15 16:56:11 | [diff] [blame] | 388 | // static |
| 389 | void RenderWidget::InstallCreateForFrameHook( |
| 390 | CreateRenderWidgetFunction create_widget) { |
| 391 | g_create_render_widget_for_frame = create_widget; |
| 392 | } |
| 393 | |
| 394 | scoped_refptr<RenderWidget> RenderWidget::CreateForFrame( |
| 395 | int32_t widget_routing_id, |
| 396 | CompositorDependencies* compositor_deps, |
| 397 | const ScreenInfo& screen_info, |
| 398 | blink::WebDisplayMode display_mode, |
| 399 | bool is_frozen, |
| 400 | bool hidden, |
| 401 | bool never_visible, |
| 402 | mojom::WidgetRequest widget_request) { |
| 403 | if (g_create_render_widget_for_frame) { |
| 404 | return g_create_render_widget_for_frame( |
| 405 | widget_routing_id, compositor_deps, screen_info, display_mode, |
| 406 | is_frozen, hidden, never_visible, std::move(widget_request)); |
| 407 | } |
| 408 | |
| 409 | return base::WrapRefCounted(new RenderWidget( |
| 410 | widget_routing_id, compositor_deps, screen_info, display_mode, is_frozen, |
| 411 | hidden, never_visible, std::move(widget_request))); |
| 412 | } |
| 413 | |
| 414 | scoped_refptr<RenderWidget> RenderWidget::CreateForPopup( |
| 415 | int32_t widget_routing_id, |
| 416 | CompositorDependencies* compositor_deps, |
| 417 | const ScreenInfo& screen_info, |
| 418 | blink::WebDisplayMode display_mode, |
| 419 | bool is_frozen, |
| 420 | bool hidden, |
| 421 | bool never_visible, |
| 422 | mojom::WidgetRequest widget_request) { |
| 423 | return base::WrapRefCounted(new RenderWidget( |
| 424 | widget_routing_id, compositor_deps, screen_info, display_mode, is_frozen, |
| 425 | hidden, never_visible, std::move(widget_request))); |
| 426 | } |
| 427 | |
danakj | 829cdd14 | 2018-09-14 21:13:27 | [diff] [blame] | 428 | RenderWidget::RenderWidget(int32_t widget_routing_id, |
| 429 | CompositorDependencies* compositor_deps, |
danakj | 829cdd14 | 2018-09-14 21:13:27 | [diff] [blame] | 430 | const ScreenInfo& screen_info, |
| 431 | blink::WebDisplayMode display_mode, |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 432 | bool is_frozen, |
danakj | 829cdd14 | 2018-09-14 21:13:27 | [diff] [blame] | 433 | bool hidden, |
| 434 | bool never_visible, |
| 435 | mojom::WidgetRequest widget_request) |
nick | 8331f8ad | 2016-11-15 20:42:45 | [diff] [blame] | 436 | : routing_id_(widget_routing_id), |
dcheng | 35d31c11 | 2015-07-22 00:17:36 | [diff] [blame] | 437 | compositor_deps_(compositor_deps), |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 438 | webwidget_internal_(nullptr), |
[email protected] | 847a258 | 2013-03-09 02:29:51 | [diff] [blame] | 439 | auto_resize_mode_(false), |
[email protected] | 1ac10dca | 2013-08-20 20:47:04 | [diff] [blame] | 440 | is_hidden_(hidden), |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 441 | compositor_never_visible_(never_visible), |
mikhail.pozdnyakov | f2c902a | 2015-04-14 08:09:12 | [diff] [blame] | 442 | is_fullscreen_granted_(false), |
danakj | 73dd303 | 2018-07-28 17:49:53 | [diff] [blame] | 443 | display_mode_(display_mode), |
changwan | f2a707b | 2015-10-30 08:22:16 | [diff] [blame] | 444 | ime_event_guard_(nullptr), |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 445 | is_frozen_(is_frozen), |
dglazkov | 97b6c2b | 2016-10-25 17:35:55 | [diff] [blame] | 446 | text_input_type_(ui::TEXT_INPUT_TYPE_NONE), |
[email protected] | b256eca | 2013-07-11 10:57:40 | [diff] [blame] | 447 | text_input_mode_(ui::TEXT_INPUT_MODE_DEFAULT), |
shuchen | 82ce8c5 | 2014-10-23 01:55:20 | [diff] [blame] | 448 | text_input_flags_(0), |
AJITH KUMAR V | 041c0b0 | 2017-08-08 10:39:20 | [diff] [blame] | 449 | next_previous_flags_(kInvalidNextPreviousFlagsValue), |
[email protected] | 86ba5fcb | 2013-09-04 00:36:53 | [diff] [blame] | 450 | can_compose_inline_(true), |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 451 | composition_range_(gfx::Range::InvalidRange()), |
[email protected] | 867125a0 | 2009-12-10 06:01:48 | [diff] [blame] | 452 | pending_window_rect_count_(0), |
Scott Violet | ae08f33 | 2018-07-27 17:37:23 | [diff] [blame] | 453 | screen_info_(screen_info), |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 454 | monitor_composition_info_(false), |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 455 | popup_origin_scale_for_emulation_(0.f), |
samans | 26510e44 | 2017-06-01 22:29:12 | [diff] [blame] | 456 | frame_swap_message_queue_(new FrameSwapMessageQueue(routing_id_)), |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 457 | has_host_context_menu_location_(false), |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 458 | has_focus_(false), |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 459 | for_child_local_root_frame_(false), |
ekaramad | 330ba423 | 2016-09-23 17:57:47 | [diff] [blame] | 460 | #if defined(OS_MACOSX) |
| 461 | text_input_client_observer_(new TextInputClientObserver(this)), |
| 462 | #endif |
Takashi SAKAMOTO | 870f626 | 2017-08-22 04:08:27 | [diff] [blame] | 463 | first_update_visual_state_after_hidden_(false), |
tasak | b95dbb50c | 2017-02-08 18:07:50 | [diff] [blame] | 464 | was_shown_time_(base::TimeTicks::Now()), |
kenrb | 5d78b84 | 2017-03-06 21:06:01 | [diff] [blame] | 465 | current_content_source_id_(0), |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 466 | widget_binding_(this, std::move(widget_request)) { |
nick | 8331f8ad | 2016-11-15 20:42:45 | [diff] [blame] | 467 | DCHECK_NE(routing_id_, MSG_ROUTING_NONE); |
Avi Drissman | 07d2245 | 2019-03-25 17:56:39 | [diff] [blame] | 468 | DCHECK(RenderThread::IsMainThread()); |
alexclarke | 7fa9394 | 2015-10-21 15:37:11 | [diff] [blame] | 469 | |
| 470 | // In tests there may not be a RenderThreadImpl. |
| 471 | if (RenderThreadImpl::current()) { |
| 472 | render_widget_scheduling_state_ = RenderThreadImpl::current() |
Yuta Kitamura | 3331f5c | 2018-04-05 11:12:25 | [diff] [blame] | 473 | ->GetWebMainThreadScheduler() |
dcheng | 07945f63 | 2015-12-26 07:59:32 | [diff] [blame] | 474 | ->NewRenderWidgetSchedulingState(); |
alexclarke | 7fa9394 | 2015-10-21 15:37:11 | [diff] [blame] | 475 | render_widget_scheduling_state_->SetHidden(is_hidden_); |
| 476 | } |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 477 | |
| 478 | if (routing_id_ != MSG_ROUTING_NONE) |
| 479 | g_routing_id_widget_map.Get().emplace(routing_id_, this); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | RenderWidget::~RenderWidget() { |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 483 | DCHECK(!webwidget_internal_) << "Leaking our WebWidget!"; |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 484 | |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 485 | // TODO(ajwong): Add in check that routing_id_ has been removed from |
| 486 | // g_routing_id_widget_map once the shutdown semantics for RenderWidget |
| 487 | // and RenderViewImpl are rationalized. Currently, too many unit and |
| 488 | // browser tests delete a RenderWidget without correclty going through |
| 489 | // the shutdown. https://crbug.com/545684 |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 490 | } |
| 491 | |
[email protected] | 48495594 | 2010-08-19 16:13:18 | [diff] [blame] | 492 | // static |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 493 | RenderWidget* RenderWidget::FromRoutingID(int32_t routing_id) { |
Avi Drissman | 07d2245 | 2019-03-25 17:56:39 | [diff] [blame] | 494 | DCHECK(RenderThread::IsMainThread()); |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 495 | RoutingIDWidgetMap* widgets = g_routing_id_widget_map.Pointer(); |
jdoerrie | 5a73d0fa | 2018-10-02 23:54:05 | [diff] [blame] | 496 | auto it = widgets->find(routing_id); |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 497 | return it == widgets->end() ? NULL : it->second; |
| 498 | } |
| 499 | |
danakj | 25ec6e2b | 2018-09-26 17:01:31 | [diff] [blame] | 500 | void RenderWidget::InitForPopup(ShowCallback show_callback, |
| 501 | blink::WebPagePopup* web_page_popup) { |
| 502 | // Init() increments the reference count on |this|, making it |
| 503 | // self-referencing. |
| 504 | Init(std::move(show_callback), web_page_popup); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 505 | } |
| 506 | |
danakj | 6a81659 | 2018-09-25 18:30:56 | [diff] [blame] | 507 | void RenderWidget::InitForChildLocalRoot( |
| 508 | blink::WebFrameWidget* web_frame_widget) { |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 509 | for_child_local_root_frame_ = true; |
danakj | 6a81659 | 2018-09-25 18:30:56 | [diff] [blame] | 510 | // Init() increments the reference count on |this|, making it |
| 511 | // self-referencing. |
| 512 | Init(base::NullCallback(), web_frame_widget); |
dcheng | da9b4bb | 2015-07-20 20:58:08 | [diff] [blame] | 513 | } |
| 514 | |
dcheng | da9b4bb | 2015-07-20 20:58:08 | [diff] [blame] | 515 | void RenderWidget::CloseForFrame() { |
danakj | 8f0bd6c | 2019-03-14 15:35:24 | [diff] [blame] | 516 | DCHECK(for_child_local_root_frame_); |
dcheng | d96a27a | 2015-07-24 20:17:32 | [diff] [blame] | 517 | OnClose(); |
kenrb | a719983 | 2015-01-22 23:44:59 | [diff] [blame] | 518 | } |
| 519 | |
Scott Violet | ae08f33 | 2018-07-27 17:37:23 | [diff] [blame] | 520 | void RenderWidget::Init(ShowCallback show_callback, WebWidget* web_widget) { |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 521 | DCHECK(!webwidget_internal_); |
nick | 4df698d8 | 2016-11-11 20:39:23 | [diff] [blame] | 522 | DCHECK_NE(routing_id_, MSG_ROUTING_NONE); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 523 | |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 524 | RenderThreadImpl* render_thread_impl = RenderThreadImpl::current(); |
| 525 | |
Jeremy Roman | 04f27c37 | 2017-10-27 15:20:55 | [diff] [blame] | 526 | input_handler_ = std::make_unique<RenderWidgetInputHandler>(this, this); |
nick | 8331f8ad | 2016-11-15 20:42:45 | [diff] [blame] | 527 | |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 528 | LayerTreeView* layer_tree_view = InitializeLayerTreeView(); |
danakj | e3bd1262 | 2019-02-13 21:54:16 | [diff] [blame] | 529 | web_widget->SetLayerTreeView(layer_tree_view, |
| 530 | layer_tree_view->animation_host()); |
Dave Tapuska | 9db8084 | 2017-07-24 17:24:26 | [diff] [blame] | 531 | |
danakj | 31699d5b | 2018-09-18 15:39:17 | [diff] [blame] | 532 | blink::scheduler::WebThreadScheduler* main_thread_scheduler = nullptr; |
| 533 | if (render_thread_impl) |
| 534 | main_thread_scheduler = render_thread_impl->GetWebMainThreadScheduler(); |
Alexander Timin | 41e917d | 2018-07-02 16:25:35 | [diff] [blame] | 535 | blink::scheduler::WebThreadScheduler* compositor_thread_scheduler = |
| 536 | blink::scheduler::WebThreadScheduler::CompositorThreadScheduler(); |
danakj | 31699d5b | 2018-09-18 15:39:17 | [diff] [blame] | 537 | scoped_refptr<base::SingleThreadTaskRunner> compositor_input_task_runner; |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 538 | // Use the compositor thread task runner unless this is a popup or other such |
| 539 | // non-frame widgets. The |compositor_thread_scheduler| can be null in tests |
| 540 | // without a compositor thread. |
| 541 | if (for_frame() && compositor_thread_scheduler) { |
| 542 | compositor_input_task_runner = |
| 543 | compositor_thread_scheduler->InputTaskRunner(); |
danakj | 31699d5b | 2018-09-18 15:39:17 | [diff] [blame] | 544 | } |
Alexander Timin | 41e917d | 2018-07-02 16:25:35 | [diff] [blame] | 545 | |
David Bokan | 3fc6848 | 2019-03-13 04:48:49 | [diff] [blame] | 546 | // We only use an external input handler for frame RenderWidgets because only |
| 547 | // frames use the compositor for input handling. Other kinds of RenderWidgets |
| 548 | // (e.g. popups, plugins) must forward their input directly through |
| 549 | // RenderWidgetInputHandler into Blink. |
| 550 | bool uses_input_handler = for_frame(); |
Dave Tapuska | 04bc5ee9 | 2018-04-17 19:03:31 | [diff] [blame] | 551 | widget_input_handler_manager_ = WidgetInputHandlerManager::Create( |
danakj | 31699d5b | 2018-09-18 15:39:17 | [diff] [blame] | 552 | weak_ptr_factory_.GetWeakPtr(), std::move(compositor_input_task_runner), |
David Bokan | 3fc6848 | 2019-03-13 04:48:49 | [diff] [blame] | 553 | main_thread_scheduler, uses_input_handler); |
Dave Tapuska | 9db8084 | 2017-07-24 17:24:26 | [diff] [blame] | 554 | |
danakj | df1ceb7 | 2018-07-18 20:02:25 | [diff] [blame] | 555 | show_callback_ = std::move(show_callback); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 556 | |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 557 | webwidget_internal_ = web_widget; |
| 558 | webwidget_mouse_lock_target_.reset( |
| 559 | new WebWidgetLockTarget(webwidget_internal_)); |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 560 | mouse_lock_dispatcher_.reset(new RenderWidgetMouseLockDispatcher(this)); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 561 | |
nick | 4df698d8 | 2016-11-11 20:39:23 | [diff] [blame] | 562 | RenderThread::Get()->AddRoute(routing_id_, this); |
| 563 | // Take a reference on behalf of the RenderThread. This will be balanced |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 564 | // when we receive WidgetMsg_Close. |
nick | 4df698d8 | 2016-11-11 20:39:23 | [diff] [blame] | 565 | AddRef(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 566 | } |
| 567 | |
danakj | 5380269 | 2018-07-25 21:46:44 | [diff] [blame] | 568 | void RenderWidget::ApplyEmulatedScreenMetricsForPopupWidget( |
| 569 | RenderWidget* origin_widget) { |
| 570 | RenderWidgetScreenMetricsEmulator* emulator = |
| 571 | origin_widget->screen_metrics_emulator_.get(); |
| 572 | if (!emulator) |
| 573 | return; |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 574 | popup_origin_scale_for_emulation_ = emulator->scale(); |
[email protected] | 1919368 | 2014-04-03 15:01:43 | [diff] [blame] | 575 | popup_view_origin_for_emulation_ = emulator->applied_widget_rect().origin(); |
Pavel Feldman | cc099f7 | 2017-07-20 23:09:00 | [diff] [blame] | 576 | popup_screen_origin_for_emulation_ = |
Lei Zhang | 9b359d3 | 2017-11-28 00:57:02 | [diff] [blame] | 577 | emulator->original_screen_rect().origin(); |
Fady Samuel | 1c1ad369 | 2018-11-06 23:28:40 | [diff] [blame] | 578 | UpdateSurfaceAndScreenInfo(local_surface_id_allocation_from_parent_, |
danakj | 0d963bd | 2019-02-20 18:00:46 | [diff] [blame] | 579 | CompositorViewportSize(), |
Fady Samuel | 1c1ad369 | 2018-11-06 23:28:40 | [diff] [blame] | 580 | emulator->original_screen_info()); |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 581 | } |
| 582 | |
[email protected] | 2d6836f4 | 2014-07-02 17:25:31 | [diff] [blame] | 583 | gfx::Rect RenderWidget::AdjustValidationMessageAnchor(const gfx::Rect& anchor) { |
| 584 | if (screen_metrics_emulator_) |
| 585 | return screen_metrics_emulator_->AdjustValidationMessageAnchor(anchor); |
| 586 | return anchor; |
| 587 | } |
| 588 | |
thakis | 18e42641 | 2017-03-15 12:06:37 | [diff] [blame] | 589 | #if BUILDFLAG(USE_EXTERNAL_POPUP_MENU) |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 590 | void RenderWidget::SetExternalPopupOriginAdjustmentsForEmulation( |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 591 | ExternalPopupMenu* popup) { |
| 592 | if (screen_metrics_emulator_) |
| 593 | popup->SetOriginScaleForEmulation(screen_metrics_emulator_->scale()); |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 594 | } |
[email protected] | 5390786 | 2014-03-25 15:42:40 | [diff] [blame] | 595 | #endif |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 596 | |
| 597 | void RenderWidget::OnShowHostContextMenu(ContextMenuParams* params) { |
| 598 | if (screen_metrics_emulator_) |
| 599 | screen_metrics_emulator_->OnShowContextMenu(params); |
| 600 | } |
| 601 | |
[email protected] | a95986a8 | 2010-12-24 06:19:28 | [diff] [blame] | 602 | bool RenderWidget::OnMessageReceived(const IPC::Message& message) { |
ekaramad | 330ba423 | 2016-09-23 17:57:47 | [diff] [blame] | 603 | #if defined(OS_MACOSX) |
| 604 | if (IPC_MESSAGE_CLASS(message) == TextInputClientMsgStart) |
| 605 | return text_input_client_observer_->OnMessageReceived(message); |
| 606 | #endif |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 607 | if (mouse_lock_dispatcher_ && |
| 608 | mouse_lock_dispatcher_->OnMessageReceived(message)) |
| 609 | return true; |
| 610 | |
[email protected] | a95986a8 | 2010-12-24 06:19:28 | [diff] [blame] | 611 | bool handled = true; |
| 612 | IPC_BEGIN_MESSAGE_MAP(RenderWidget, message) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 613 | IPC_MESSAGE_HANDLER(WidgetMsg_ShowContextMenu, OnShowContextMenu) |
| 614 | IPC_MESSAGE_HANDLER(WidgetMsg_Close, OnClose) |
| 615 | IPC_MESSAGE_HANDLER(WidgetMsg_SynchronizeVisualProperties, |
Fady Samuel | 799e7219 | 2018-04-25 21:16:57 | [diff] [blame] | 616 | OnSynchronizeVisualProperties) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 617 | IPC_MESSAGE_HANDLER(WidgetMsg_EnableDeviceEmulation, |
dgozman | 9260b0a1 | 2015-03-16 13:45:20 | [diff] [blame] | 618 | OnEnableDeviceEmulation) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 619 | IPC_MESSAGE_HANDLER(WidgetMsg_DisableDeviceEmulation, |
dgozman | 9260b0a1 | 2015-03-16 13:45:20 | [diff] [blame] | 620 | OnDisableDeviceEmulation) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 621 | IPC_MESSAGE_HANDLER(WidgetMsg_WasHidden, OnWasHidden) |
| 622 | IPC_MESSAGE_HANDLER(WidgetMsg_WasShown, OnWasShown) |
| 623 | IPC_MESSAGE_HANDLER(WidgetMsg_SetActive, OnSetActive) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 624 | IPC_MESSAGE_HANDLER(WidgetMsg_SetTextDirection, OnSetTextDirection) |
| 625 | IPC_MESSAGE_HANDLER(WidgetMsg_SetBounds_ACK, OnRequestSetBoundsAck) |
| 626 | IPC_MESSAGE_HANDLER(WidgetMsg_UpdateScreenRects, OnUpdateScreenRects) |
| 627 | IPC_MESSAGE_HANDLER(WidgetMsg_ForceRedraw, OnForceRedraw) |
| 628 | IPC_MESSAGE_HANDLER(WidgetMsg_SetViewportIntersection, |
kenrb | ea73179 | 2017-01-13 15:10:48 | [diff] [blame] | 629 | OnSetViewportIntersection) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 630 | IPC_MESSAGE_HANDLER(WidgetMsg_SetIsInert, OnSetIsInert) |
| 631 | IPC_MESSAGE_HANDLER(WidgetMsg_SetInheritedEffectiveTouchAction, |
sunxd | 540a996 | 2018-05-24 22:51:06 | [diff] [blame] | 632 | OnSetInheritedEffectiveTouchAction) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 633 | IPC_MESSAGE_HANDLER(WidgetMsg_UpdateRenderThrottlingStatus, |
Ken Buchanan | 8a319fb | 2017-11-15 18:37:12 | [diff] [blame] | 634 | OnUpdateRenderThrottlingStatus) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 635 | IPC_MESSAGE_HANDLER(WidgetMsg_WaitForNextFrameForTests, |
lfg | 43e08e6 | 2016-02-03 18:51:37 | [diff] [blame] | 636 | OnWaitNextFrameForTests) |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 637 | IPC_MESSAGE_HANDLER(DragMsg_TargetDragEnter, OnDragTargetDragEnter) |
| 638 | IPC_MESSAGE_HANDLER(DragMsg_TargetDragOver, OnDragTargetDragOver) |
| 639 | IPC_MESSAGE_HANDLER(DragMsg_TargetDragLeave, OnDragTargetDragLeave) |
| 640 | IPC_MESSAGE_HANDLER(DragMsg_TargetDrop, OnDragTargetDrop) |
paulmeyer | 8fc8ea9 | 2016-11-15 05:12:21 | [diff] [blame] | 641 | IPC_MESSAGE_HANDLER(DragMsg_SourceEnded, OnDragSourceEnded) |
| 642 | IPC_MESSAGE_HANDLER(DragMsg_SourceSystemDragEnded, |
| 643 | OnDragSourceSystemDragEnded) |
[email protected] | a95986a8 | 2010-12-24 06:19:28 | [diff] [blame] | 644 | IPC_MESSAGE_UNHANDLED(handled = false) |
| 645 | IPC_END_MESSAGE_MAP() |
| 646 | return handled; |
| 647 | } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 648 | |
| 649 | bool RenderWidget::Send(IPC::Message* message) { |
Nasko Oskov | f97e8b0 | 2017-07-25 02:45:42 | [diff] [blame] | 650 | // Don't send any messages after the browser has told us to close, and filter |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 651 | // most outgoing messages when frozen. |
| 652 | if (closing_) { |
| 653 | delete message; |
| 654 | return false; |
| 655 | } |
| 656 | if (is_frozen_ && !SwappedOutMessages::CanSendWhileSwappedOut(message)) { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 657 | delete message; |
| 658 | return false; |
| 659 | } |
| 660 | |
| 661 | // If given a messsage without a routing ID, then assign our routing ID. |
| 662 | if (message->routing_id() == MSG_ROUTING_NONE) |
| 663 | message->set_routing_id(routing_id_); |
| 664 | |
[email protected] | 38024409 | 2011-10-07 17:26:27 | [diff] [blame] | 665 | return RenderThread::Get()->Send(message); |
[email protected] | 8085dbc8 | 2008-09-26 22:53:44 | [diff] [blame] | 666 | } |
| 667 | |
dtapuska | 014ed08 | 2016-11-11 21:58:48 | [diff] [blame] | 668 | void RenderWidget::SendOrCrash(IPC::Message* message) { |
| 669 | bool result = Send(message); |
| 670 | CHECK(closing_ || result) << "Failed to send message"; |
| 671 | } |
| 672 | |
ekaramad | 5aff194 | 2017-01-06 01:26:35 | [diff] [blame] | 673 | bool RenderWidget::ShouldHandleImeEvents() const { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 674 | if (delegate()) |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 675 | return has_focus_; |
| 676 | if (for_child_local_root_frame_) { |
| 677 | // TODO(ekaramad): We track page focus in all RenderViews on the page but |
| 678 | // the RenderWidgets corresponding to child local roots do not get the |
| 679 | // update. For now, this method returns true when the RenderWidget is for a |
| 680 | // child local frame, i.e., IME events will be processed regardless of page |
| 681 | // focus. We should revisit this after page focus for OOPIFs has been fully |
| 682 | // resolved (https://crbug.com/689777). |
| 683 | return true; |
| 684 | } |
| 685 | // Not a frame widget. |
| 686 | return false; |
ekaramad | 5aff194 | 2017-01-06 01:26:35 | [diff] [blame] | 687 | } |
| 688 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 689 | void RenderWidget::OnClose() { |
Avi Drissman | 07d2245 | 2019-03-25 17:56:39 | [diff] [blame] | 690 | DCHECK(RenderThread::IsMainThread()); |
dcheng | d96a27a | 2015-07-24 20:17:32 | [diff] [blame] | 691 | if (closing_) |
| 692 | return; |
danakj | 292b63e | 2018-11-19 20:47:06 | [diff] [blame] | 693 | for (auto& observer : render_frames_) |
| 694 | observer.WidgetWillClose(); |
dcheng | d96a27a | 2015-07-24 20:17:32 | [diff] [blame] | 695 | closing_ = true; |
| 696 | |
| 697 | // Browser correspondence is no longer needed at this point. |
| 698 | if (routing_id_ != MSG_ROUTING_NONE) { |
| 699 | RenderThread::Get()->RemoveRoute(routing_id_); |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 700 | g_routing_id_widget_map.Get().erase(routing_id_); |
dcheng | d96a27a | 2015-07-24 20:17:32 | [diff] [blame] | 701 | } |
| 702 | |
danakj | 327a4fe | 2019-01-26 00:00:35 | [diff] [blame] | 703 | // Stop handling main thread input events immediately so we don't have them |
| 704 | // running while things are partly shut down. |
| 705 | if (input_event_queue_) |
| 706 | input_event_queue_->ClearClient(); |
| 707 | |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 708 | if (for_child_local_root_frame_) { |
dcheng | d96a27a | 2015-07-24 20:17:32 | [diff] [blame] | 709 | // Widgets for frames may be created and closed at any time while the frame |
Ken Buchanan | ed449bb | 2018-02-01 21:02:05 | [diff] [blame] | 710 | // is alive. However, WebWidget must be closed synchronously because frame |
| 711 | // widgets and frames hold pointers to each other. The deferred call to |
| 712 | // Close() will complete cleanup and release |this|, but CloseWebWidget() |
| 713 | // prevents Close() from attempting to access members of an |
| 714 | // already-deleted frame. |
| 715 | CloseWebWidget(); |
dcheng | d96a27a | 2015-07-24 20:17:32 | [diff] [blame] | 716 | } |
Ken Buchanan | ed449bb | 2018-02-01 21:02:05 | [diff] [blame] | 717 | // If there is a Send call on the stack, then it could be dangerous to close |
| 718 | // now. Post a task that only gets invoked when there are no nested message |
| 719 | // loops. |
Albert J. Wong | 2727e8a8 | 2019-02-15 16:56:11 | [diff] [blame] | 720 | // |
| 721 | // The asynchronous Close() takes an owning reference to |this| keeping the |
| 722 | // object alive beyond the Release() below. It is the last reference to this |
| 723 | // object. |
| 724 | // |
| 725 | // TODO(https://crbug.com/545684): The actual lifetime for RenderWidget |
| 726 | // seems to be single-owner. It is either owned by "IPC" events (popup, |
| 727 | // mainframe, and fullscreen), or a RenderFrame. If Close() self-deleting, |
| 728 | // all the ref-counting mess could be removed. |
Hajime Hoshi | 315a61f | 2018-08-14 17:27:28 | [diff] [blame] | 729 | GetCleanupTaskRunner()->PostNonNestableTask( |
| 730 | FROM_HERE, base::BindOnce(&RenderWidget::Close, this)); |
dcheng | d96a27a | 2015-07-24 20:17:32 | [diff] [blame] | 731 | |
| 732 | // Balances the AddRef taken when we called AddRoute. |
| 733 | Release(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 734 | } |
| 735 | |
Fady Samuel | 799e7219 | 2018-04-25 21:16:57 | [diff] [blame] | 736 | void RenderWidget::OnSynchronizeVisualProperties( |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 737 | const VisualProperties& original_params) { |
| 738 | TRACE_EVENT0("renderer", "RenderWidget::OnSynchronizeVisualProperties"); |
EhsanK | bd2cea99 | 2017-11-23 18:49:08 | [diff] [blame] | 739 | |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 740 | VisualProperties params = original_params; |
danakj | 01474dd | 2019-01-28 10:46:04 | [diff] [blame] | 741 | // Web tests can override the device scale factor in the renderer. |
| 742 | if (device_scale_factor_for_testing_) { |
danakj | b4cec10 | 2019-01-30 19:22:13 | [diff] [blame] | 743 | params.screen_info.device_scale_factor = device_scale_factor_for_testing_; |
danakj | 01474dd | 2019-01-28 10:46:04 | [diff] [blame] | 744 | params.compositor_viewport_pixel_size = gfx::ScaleToCeiledSize( |
| 745 | params.new_size, params.screen_info.device_scale_factor); |
| 746 | } |
danakj | 04d128a | 2019-01-25 02:10:20 | [diff] [blame] | 747 | |
| 748 | // Inform the rendering thread of the color space indicating the presence of |
| 749 | // HDR capabilities. The HDR bit happens to be globally true/false for all |
| 750 | // browser windows (on Windows OS) and thus would be the same for all |
| 751 | // RenderWidgets, so clobbering each other works out since only the HDR bit is |
| 752 | // used. See https://crbug.com/803451 and |
| 753 | // https://chromium-review.googlesource.com/c/chromium/src/+/852912/15#message-68bbd3e25c3b421a79cd028b2533629527d21fee |
| 754 | // |
| 755 | // The RenderThreadImpl can be null in tests. |
| 756 | { |
| 757 | RenderThreadImpl* render_thread = RenderThreadImpl::current(); |
| 758 | if (render_thread) |
| 759 | render_thread->SetRenderingColorSpace(params.screen_info.color_space); |
| 760 | } |
| 761 | |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 762 | if (delegate()) { |
danakj | 84bbf55 | 2019-01-21 21:33:31 | [diff] [blame] | 763 | if (size_ != params.new_size) { |
| 764 | // Only hide popups when the size changes. Eg https://crbug.com/761908. |
| 765 | delegate()->CancelPagePopupForWidget(); |
| 766 | } |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 767 | |
| 768 | if (display_mode_ != params.display_mode) { |
| 769 | display_mode_ = params.display_mode; |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 770 | delegate()->ApplyNewDisplayModeForWidget(params.display_mode); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | bool auto_resize_mode_changed = |
| 774 | auto_resize_mode_ != params.auto_resize_enabled; |
| 775 | auto_resize_mode_ = params.auto_resize_enabled; |
| 776 | min_size_for_auto_resize_ = params.min_size_for_auto_resize; |
| 777 | max_size_for_auto_resize_ = params.max_size_for_auto_resize; |
| 778 | |
| 779 | if (auto_resize_mode_) { |
| 780 | gfx::Size min_auto_size = min_size_for_auto_resize_; |
| 781 | gfx::Size max_auto_size = max_size_for_auto_resize_; |
| 782 | if (compositor_deps_->IsUseZoomForDSFEnabled()) { |
| 783 | min_auto_size = gfx::ScaleToCeiledSize( |
| 784 | min_auto_size, params.screen_info.device_scale_factor); |
| 785 | max_auto_size = gfx::ScaleToCeiledSize( |
| 786 | max_auto_size, params.screen_info.device_scale_factor); |
| 787 | } |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 788 | delegate()->ApplyAutoResizeLimitsForWidget(min_auto_size, max_auto_size); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 789 | } else if (auto_resize_mode_changed) { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 790 | delegate()->DisableAutoResizeForWidget(); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 791 | if (params.new_size.IsEmpty()) |
| 792 | return; |
| 793 | } |
| 794 | |
| 795 | browser_controls_shrink_blink_size_ = |
| 796 | params.browser_controls_shrink_blink_size; |
| 797 | top_controls_height_ = params.top_controls_height; |
| 798 | bottom_controls_height_ = params.bottom_controls_height; |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 799 | } |
| 800 | |
danakj | 7602f4f | 2019-01-31 18:03:23 | [diff] [blame] | 801 | bool ignore_resize_ipc = false; |
| 802 | if (synchronous_resize_mode_for_testing_) { |
| 803 | // We can ignore browser-initialized resizing during synchronous |
| 804 | // (renderer-controlled) mode, unless it is switching us to/from |
| 805 | // fullsreen mode or changing the device scale factor. |
| 806 | // TODO(danakj): Does the browser actually change DSF inside a web test?? |
| 807 | // TODO(danakj): Isn't the display mode check redundant with the fullscreen |
| 808 | // one? |
| 809 | if (params.is_fullscreen_granted == is_fullscreen_granted_ && |
| 810 | params.display_mode == display_mode_ && |
| 811 | params.screen_info.device_scale_factor == |
| 812 | screen_info_.device_scale_factor) |
| 813 | ignore_resize_ipc = true; |
| 814 | } |
| 815 | |
| 816 | // When controlling the size in the renderer, we should ignore sizes given by |
| 817 | // the browser IPC here. |
| 818 | // TODO(danakj): There are many things also being ignored that aren't the |
| 819 | // widget's size params. It works because tests that use this mode don't |
| 820 | // change those parameters, I guess. But it's more complicated then because it |
| 821 | // looks like they are related to sync resize mode. Let's move them out of |
| 822 | // this block. |
| 823 | // TODO(danakj): It would be nice if we can still use the emulator to emulate |
| 824 | // things other than the size if we are in sync resize mode - if the emulator |
| 825 | // is even used in sync resize tests. It probably isn't though, so either way |
| 826 | // it'd be good to get the emulator out of this block (maybe by overwriting |
| 827 | // some of |params| in sync resize mode instead of just skipping the emulator. |
| 828 | if (!ignore_resize_ipc) { |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 829 | if (screen_metrics_emulator_) { |
danakj | 7602f4f | 2019-01-31 18:03:23 | [diff] [blame] | 830 | // This will call our SynchronizeVisualProperties() method with a |
| 831 | // different set of VisualProperties, holding emulated values. Though not |
| 832 | // all VisualProperties are modified by the metrics emulator, so it's a |
| 833 | // bit unclear to do this with the full structure. Anything it does not |
| 834 | // modify can be consumed directly here instead of in |
| 835 | // SynchronizeVisualProperties(). |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 836 | screen_metrics_emulator_->OnSynchronizeVisualProperties(params); |
| 837 | } else { |
danakj | 0246bba0 | 2019-01-23 23:12:27 | [diff] [blame] | 838 | if (!delegate()) { |
| 839 | // The main frame controls the page scale factor, from blink. For other |
| 840 | // frame widgets, the page scale is received from its parent as part of |
| 841 | // the visual properties here. While blink doesn't need to know this |
| 842 | // page scale factor outside the main frame, the compositor does in |
| 843 | // order to produce its output at the correct scale. |
W. James MacLean | 2cd99b6 | 2019-04-08 13:54:43 | [diff] [blame] | 844 | layer_tree_view_->SetExternalPageScaleFactor( |
| 845 | params.page_scale_factor, params.is_pinch_gesture_active); |
danakj | 0246bba0 | 2019-01-23 23:12:27 | [diff] [blame] | 846 | // Store the value to give to any new RenderFrameProxy that is |
| 847 | // registered. |
| 848 | page_scale_factor_from_mainframe_ = params.page_scale_factor; |
W. James MacLean | 2cd99b6 | 2019-04-08 13:54:43 | [diff] [blame] | 849 | // Similarly, only the main frame knows when a pinch gesture is active, |
| 850 | // but this information is needed in subframes so they can throttle |
| 851 | // re-rastering in the same manner as the main frame. |
| 852 | // |is_pinch_gesture_active| follows the same path to the subframe |
| 853 | // compositor(s) as |page_scale_factor|. |
| 854 | is_pinch_gesture_active_from_mainframe_ = |
| 855 | params.is_pinch_gesture_active; |
danakj | 0246bba0 | 2019-01-23 23:12:27 | [diff] [blame] | 856 | // Push the page scale factor down to any child RenderWidgets via our |
| 857 | // child proxy frames. |
| 858 | // TODO(danakj): This ends up setting the page scale factor in the |
| 859 | // RenderWidgetHost of the child RenderWidget, so that it can bounce |
| 860 | // the value down to its RenderWidget. Since this is essentially a |
| 861 | // global value per-page, we could instead store it once in the browser |
| 862 | // (such as in RenderViewHost) and distribute it to each frame-hosted |
| 863 | // RenderWidget from there. |
W. James MacLean | 2cd99b6 | 2019-04-08 13:54:43 | [diff] [blame] | 864 | for (auto& child_proxy : render_frame_proxies_) { |
| 865 | child_proxy.OnPageScaleFactorChanged(params.page_scale_factor, |
| 866 | params.is_pinch_gesture_active); |
| 867 | } |
danakj | 0246bba0 | 2019-01-23 23:12:27 | [diff] [blame] | 868 | } |
| 869 | |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 870 | gfx::Size old_visible_viewport_size = visible_viewport_size_; |
| 871 | SynchronizeVisualProperties(params); |
| 872 | if (old_visible_viewport_size != visible_viewport_size_) { |
| 873 | for (auto& render_frame : render_frames_) |
Sushanth Rajasankar | ceaee20 | 2019-03-18 15:44:17 | [diff] [blame] | 874 | render_frame.ResetHasScrolledFocusedEditableIntoView(); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 875 | } |
| 876 | } |
Fady Samuel | 799e7219 | 2018-04-25 21:16:57 | [diff] [blame] | 877 | } |
| 878 | |
Sushanth Rajasankar | ceaee20 | 2019-03-18 15:44:17 | [diff] [blame] | 879 | // TODO(crbug.com/939118): ScrollFocusedNodeIntoViewForWidget does not work |
| 880 | // when the focused node is inside an OOPIF. This code path where |
| 881 | // scroll_focused_node_into_view is set is used only for WebView, crbug |
| 882 | // 939118 tracks fixing webviews to not use scroll_focused_node_into_view. |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 883 | if (delegate() && params.scroll_focused_node_into_view) |
| 884 | delegate()->ScrollFocusedNodeIntoViewForWidget(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 885 | } |
| 886 | |
dgozman | 9260b0a1 | 2015-03-16 13:45:20 | [diff] [blame] | 887 | void RenderWidget::OnEnableDeviceEmulation( |
Lei Zhang | 9b359d3 | 2017-11-28 00:57:02 | [diff] [blame] | 888 | const blink::WebDeviceEmulationParams& params) { |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 889 | if (!screen_metrics_emulator_) { |
Fady Samuel | 4255c18 | 2018-05-24 20:42:36 | [diff] [blame] | 890 | VisualProperties visual_properties; |
| 891 | visual_properties.screen_info = screen_info_; |
| 892 | visual_properties.new_size = size_; |
danakj | 0d963bd | 2019-02-20 18:00:46 | [diff] [blame] | 893 | visual_properties.compositor_viewport_pixel_size = CompositorViewportSize(); |
Fady Samuel | 84d8a1f7 | 2018-11-08 00:26:17 | [diff] [blame] | 894 | visual_properties.local_surface_id_allocation = |
| 895 | local_surface_id_allocation_from_parent_; |
Fady Samuel | 4255c18 | 2018-05-24 20:42:36 | [diff] [blame] | 896 | visual_properties.visible_viewport_size = visible_viewport_size_; |
| 897 | visual_properties.is_fullscreen_granted = is_fullscreen_granted_; |
| 898 | visual_properties.display_mode = display_mode_; |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 899 | screen_metrics_emulator_.reset(new RenderWidgetScreenMetricsEmulator( |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 900 | this, params, visual_properties, widget_screen_rect_, |
Fady Samuel | 4255c18 | 2018-05-24 20:42:36 | [diff] [blame] | 901 | window_screen_rect_)); |
oshima | 50872a7 | 2016-03-04 13:26:18 | [diff] [blame] | 902 | screen_metrics_emulator_->Apply(); |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 903 | } else { |
dgozman | 9260b0a1 | 2015-03-16 13:45:20 | [diff] [blame] | 904 | screen_metrics_emulator_->ChangeEmulationParams(params); |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 905 | } |
dgozman | 9260b0a1 | 2015-03-16 13:45:20 | [diff] [blame] | 906 | } |
| 907 | |
| 908 | void RenderWidget::OnDisableDeviceEmulation() { |
| 909 | screen_metrics_emulator_.reset(); |
| 910 | } |
| 911 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 912 | void RenderWidget::OnWasHidden() { |
danakj | 14e00a832 | 2019-02-07 17:12:06 | [diff] [blame] | 913 | // A frozen main frame widget will never be hidden since that would require it |
| 914 | // to be shown first. It must be thawed before changing visibility. |
| 915 | DCHECK(!is_frozen_); |
| 916 | |
[email protected] | 9c3085f | 2011-06-09 02:10:31 | [diff] [blame] | 917 | TRACE_EVENT0("renderer", "RenderWidget::OnWasHidden"); |
danakj | 14e00a832 | 2019-02-07 17:12:06 | [diff] [blame] | 918 | |
[email protected] | bee16aab | 2009-08-26 15:55:03 | [diff] [blame] | 919 | SetHidden(true); |
danakj | 14e00a832 | 2019-02-07 17:12:06 | [diff] [blame] | 920 | |
Francois Doray | 687e70a | 2019-05-16 02:24:55 | [diff] [blame] | 921 | tab_switch_time_recorder_.TabWasHidden(); |
| 922 | |
ericwilligers | 88e6974 | 2016-10-17 19:29:55 | [diff] [blame] | 923 | for (auto& observer : render_frames_) |
| 924 | observer.WasHidden(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 925 | } |
| 926 | |
Sebastien Marchand | 5f06ca3 | 2019-05-17 18:03:42 | [diff] [blame^] | 927 | void RenderWidget::OnWasShown( |
| 928 | base::TimeTicks show_request_timestamp, |
| 929 | bool was_evicted, |
| 930 | const base::Optional<content::RecordTabSwitchTimeRequest>& |
| 931 | record_tab_switch_time_request) { |
danakj | 14e00a832 | 2019-02-07 17:12:06 | [diff] [blame] | 932 | // A frozen main frame widget does not become shown, since it has no frame |
| 933 | // associated with it. It must be thawed before changing visibility. |
| 934 | DCHECK(!is_frozen_); |
| 935 | |
Edwin Joe | a4069f4 | 2019-02-20 15:06:24 | [diff] [blame] | 936 | TRACE_EVENT_WITH_FLOW0("renderer", "RenderWidget::OnWasShown", routing_id(), |
| 937 | TRACE_EVENT_FLAG_FLOW_IN); |
danakj | 678f025 | 2018-11-09 21:46:34 | [diff] [blame] | 938 | |
tasak | b95dbb50c | 2017-02-08 18:07:50 | [diff] [blame] | 939 | was_shown_time_ = base::TimeTicks::Now(); |
danakj | 14e00a832 | 2019-02-07 17:12:06 | [diff] [blame] | 940 | |
[email protected] | bee16aab | 2009-08-26 15:55:03 | [diff] [blame] | 941 | SetHidden(false); |
Sebastien Marchand | 5f06ca3 | 2019-05-17 18:03:42 | [diff] [blame^] | 942 | if (record_tab_switch_time_request) { |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 943 | layer_tree_view_->layer_tree_host()->RequestPresentationTimeForNextFrame( |
Sebastien Marchand | 5f06ca3 | 2019-05-17 18:03:42 | [diff] [blame^] | 944 | tab_switch_time_recorder_.TabWasShown( |
| 945 | false /* has_saved_frames */, |
| 946 | record_tab_switch_time_request.value(), show_request_timestamp)); |
[email protected] | 3399dd82 | 2014-08-09 11:14:24 | [diff] [blame] | 947 | } |
danakj | 14e00a832 | 2019-02-07 17:12:06 | [diff] [blame] | 948 | |
| 949 | for (auto& observer : render_frames_) |
| 950 | observer.WasShown(); |
| 951 | if (was_evicted) { |
| 952 | for (auto& observer : render_frame_proxies_) |
| 953 | observer.WasEvicted(); |
| 954 | } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 955 | } |
| 956 | |
Avi Drissman | 014dec7 | 2018-06-07 02:34:01 | [diff] [blame] | 957 | void RenderWidget::OnRequestSetBoundsAck() { |
[email protected] | 53d3f30 | 2009-12-21 04:42:05 | [diff] [blame] | 958 | DCHECK(pending_window_rect_count_); |
| 959 | pending_window_rect_count_--; |
| 960 | } |
| 961 | |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 962 | void RenderWidget::OnForceRedraw(int snapshot_id) { |
David Bokan | f92eaf2 | 2019-03-01 01:54:51 | [diff] [blame] | 963 | RequestPresentation(base::BindOnce(&RenderWidget::DidPresentForceDrawFrame, |
| 964 | weak_ptr_factory_.GetWeakPtr(), |
| 965 | snapshot_id)); |
| 966 | } |
| 967 | |
| 968 | void RenderWidget::RequestPresentation(PresentationTimeCallback callback) { |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 969 | layer_tree_view_->layer_tree_host()->RequestPresentationTimeForNextFrame( |
David Bokan | f92eaf2 | 2019-03-01 01:54:51 | [diff] [blame] | 970 | std::move(callback)); |
danakj | da15621e | 2019-04-05 20:34:43 | [diff] [blame] | 971 | layer_tree_view_->layer_tree_host()->SetNeedsCommitWithForcedRedraw(); |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | void RenderWidget::DidPresentForceDrawFrame( |
| 975 | int snapshot_id, |
| 976 | const gfx::PresentationFeedback& feedback) { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 977 | Send(new WidgetHostMsg_ForceRedrawComplete(routing_id(), snapshot_id)); |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 978 | } |
| 979 | |
Xianzhu Wang | f02017ac | 2018-10-17 01:47:33 | [diff] [blame] | 980 | viz::FrameSinkId RenderWidget::GetFrameSinkIdAtPoint(const gfx::PointF& point, |
Ken Buchanan | 44d7e2f | 2018-08-23 14:18:05 | [diff] [blame] | 981 | gfx::PointF* local_point) { |
| 982 | return input_handler_->GetFrameSinkIdAtPoint(point, local_point); |
Navid Zolghadr | 0d86e5f | 2017-10-23 18:09:22 | [diff] [blame] | 983 | } |
| 984 | |
danakj | 77821e25 | 2019-03-27 19:58:04 | [diff] [blame] | 985 | bool RenderWidget::HasPendingPageScaleAnimation() const { |
| 986 | return layer_tree_view_->layer_tree_host()->HasPendingPageScaleAnimation(); |
| 987 | } |
| 988 | |
danakj | 327a4fe | 2019-01-26 00:00:35 | [diff] [blame] | 989 | bool RenderWidget::HandleInputEvent( |
dtapuska | 9ec1a91 | 2017-04-21 15:18:31 | [diff] [blame] | 990 | const blink::WebCoalescedInputEvent& input_event, |
| 991 | const ui::LatencyInfo& latency_info, |
Dave Tapuska | ea83d3bd | 2017-06-13 16:14:55 | [diff] [blame] | 992 | HandledEventCallback callback) { |
danakj | 327a4fe | 2019-01-26 00:00:35 | [diff] [blame] | 993 | if (is_frozen_) |
| 994 | return false; |
Dave Tapuska | ea83d3bd | 2017-06-13 16:14:55 | [diff] [blame] | 995 | input_handler_->HandleInputEvent(input_event, latency_info, |
| 996 | std::move(callback)); |
danakj | 327a4fe | 2019-01-26 00:00:35 | [diff] [blame] | 997 | return true; |
dtapuska | 9ec1a91 | 2017-04-21 15:18:31 | [diff] [blame] | 998 | } |
| 999 | |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 1000 | void RenderWidget::SetNeedsMainFrame() { |
danakj | 0719e065 | 2019-03-14 21:19:11 | [diff] [blame] | 1001 | ScheduleAnimation(); |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 1002 | } |
| 1003 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 1004 | scoped_refptr<MainThreadEventQueue> RenderWidget::GetInputEventQueue() { |
| 1005 | return input_event_queue_; |
| 1006 | } |
| 1007 | |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1008 | void RenderWidget::OnCursorVisibilityChange(bool is_visible) { |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 1009 | if (GetWebWidget()) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1010 | GetWebWidget()->SetCursorVisibilityState(is_visible); |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1011 | } |
| 1012 | |
[email protected] | 76b082c | 2019-03-22 03:45:46 | [diff] [blame] | 1013 | void RenderWidget::OnFallbackCursorModeToggled(bool is_on) { |
| 1014 | if (GetWebWidget()) |
| 1015 | GetWebWidget()->OnFallbackCursorModeToggled(is_on); |
| 1016 | } |
| 1017 | |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1018 | void RenderWidget::OnMouseCaptureLost() { |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 1019 | if (GetWebWidget()) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1020 | GetWebWidget()->MouseCaptureLost(); |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1021 | } |
| 1022 | |
alexmos | 5656749 | 2016-09-13 00:52:46 | [diff] [blame] | 1023 | void RenderWidget::OnSetEditCommandsForNextKeyEvent( |
| 1024 | const EditCommands& edit_commands) { |
| 1025 | edit_commands_ = edit_commands; |
| 1026 | } |
| 1027 | |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 1028 | void RenderWidget::OnSetActive(bool active) { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1029 | if (delegate()) |
| 1030 | delegate()->SetActiveForWidget(active); |
Albert J. Wong | cb00463 | 2018-07-10 22:58:25 | [diff] [blame] | 1031 | } |
| 1032 | |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1033 | void RenderWidget::OnSetFocus(bool enable) { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1034 | if (delegate()) |
| 1035 | delegate()->DidReceiveSetFocusEventForWidget(); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1036 | SetFocus(enable); |
| 1037 | } |
| 1038 | |
| 1039 | void RenderWidget::SetFocus(bool enable) { |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 1040 | has_focus_ = enable; |
| 1041 | |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 1042 | if (GetWebWidget()) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1043 | GetWebWidget()->SetFocus(enable); |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 1044 | |
ericwilligers | 88e6974 | 2016-10-17 19:29:55 | [diff] [blame] | 1045 | for (auto& observer : render_frames_) |
| 1046 | observer.RenderWidgetSetFocus(enable); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1047 | |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1048 | if (delegate()) |
| 1049 | delegate()->DidChangeFocusForWidget(); |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1050 | } |
| 1051 | |
| 1052 | /////////////////////////////////////////////////////////////////////////////// |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 1053 | // LayerTreeViewDelegate |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1054 | |
David Bokan | c8e38d0 | 2018-10-08 21:56:01 | [diff] [blame] | 1055 | void RenderWidget::ApplyViewportChanges( |
| 1056 | const cc::ApplyViewportChangesArgs& args) { |
Ken Buchanan | ed449bb | 2018-02-01 21:02:05 | [diff] [blame] | 1057 | if (!GetWebWidget()) |
| 1058 | return; |
David Bokan | c8e38d0 | 2018-10-08 21:56:01 | [diff] [blame] | 1059 | GetWebWidget()->ApplyViewportChanges(args); |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1060 | } |
| 1061 | |
sahel | 1b47fda7 | 2017-03-28 17:03:07 | [diff] [blame] | 1062 | void RenderWidget::RecordWheelAndTouchScrollingCount( |
| 1063 | bool has_scrolled_by_wheel, |
| 1064 | bool has_scrolled_by_touch) { |
Ken Buchanan | ed449bb | 2018-02-01 21:02:05 | [diff] [blame] | 1065 | if (!GetWebWidget()) |
| 1066 | return; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1067 | GetWebWidget()->RecordWheelAndTouchScrollingCount(has_scrolled_by_wheel, |
sahel | 1b47fda7 | 2017-03-28 17:03:07 | [diff] [blame] | 1068 | has_scrolled_by_touch); |
| 1069 | } |
| 1070 | |
Sahel Sharify | 676580c | 2019-01-10 21:49:49 | [diff] [blame] | 1071 | void RenderWidget::SendOverscrollEventFromImplSide( |
| 1072 | const gfx::Vector2dF& overscroll_delta, |
| 1073 | cc::ElementId scroll_latched_element_id) { |
| 1074 | if (!GetWebWidget()) |
| 1075 | return; |
| 1076 | GetWebWidget()->SendOverscrollEventFromImplSide(overscroll_delta, |
| 1077 | scroll_latched_element_id); |
| 1078 | } |
| 1079 | void RenderWidget::SendScrollEndEventFromImplSide( |
| 1080 | cc::ElementId scroll_latched_element_id) { |
| 1081 | if (!GetWebWidget()) |
| 1082 | return; |
| 1083 | GetWebWidget()->SendScrollEndEventFromImplSide(scroll_latched_element_id); |
| 1084 | } |
| 1085 | |
Daniel Cheng | 224569ee | 2018-04-25 05:45:06 | [diff] [blame] | 1086 | void RenderWidget::BeginMainFrame(base::TimeTicks frame_time) { |
Ken Buchanan | ed449bb | 2018-02-01 21:02:05 | [diff] [blame] | 1087 | if (!GetWebWidget()) |
| 1088 | return; |
dtapuska | 3d5624d3 | 2016-08-30 04:34:00 | [diff] [blame] | 1089 | |
Stephen Chenney | d56b538 | 2019-01-29 00:37:02 | [diff] [blame] | 1090 | // We record metrics only when running in multi-threaded mode, not |
| 1091 | // single-thread mode for testing. |
| 1092 | bool record_main_frame_metrics = |
| 1093 | !!compositor_deps_->GetCompositorImplThreadTaskRunner(); |
| 1094 | if (input_event_queue_) { |
| 1095 | base::Optional<ScopedUkmRafAlignedInputTimer> ukm_timer; |
| 1096 | if (record_main_frame_metrics) |
| 1097 | ukm_timer.emplace(GetWebWidget()); |
| 1098 | input_event_queue_->DispatchRafAlignedInput(frame_time); |
| 1099 | } |
| 1100 | |
| 1101 | GetWebWidget()->BeginFrame(frame_time, record_main_frame_metrics); |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1102 | } |
| 1103 | |
Stefan Zager | 148248c | 2019-02-20 23:24:08 | [diff] [blame] | 1104 | void RenderWidget::DidBeginMainFrame() { |
| 1105 | if (!GetWebWidget()) |
| 1106 | return; |
| 1107 | GetWebWidget()->DidBeginFrame(); |
| 1108 | } |
| 1109 | |
danakj | c7afae5 | 2017-06-20 21:12:41 | [diff] [blame] | 1110 | void RenderWidget::RequestNewLayerTreeFrameSink( |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 1111 | LayerTreeFrameSinkCallback callback) { |
[email protected] | 7912e82 | 2014-04-16 02:37:03 | [diff] [blame] | 1112 | // For widgets that are never visible, we don't start the compositor, so we |
danakj | c7afae5 | 2017-06-20 21:12:41 | [diff] [blame] | 1113 | // never get a request for a cc::LayerTreeFrameSink. |
sievers | 71c62dd5 | 2015-10-07 01:44:39 | [diff] [blame] | 1114 | DCHECK(!compositor_never_visible_); |
danakj | f8746079 | 2018-12-04 20:14:22 | [diff] [blame] | 1115 | // Frozen RenderWidgets should not be doing any compositing. |
Scott Violet | b04f16c | 2018-11-27 00:48:46 | [diff] [blame] | 1116 | DCHECK(!is_frozen_); |
danakj | 678f025 | 2018-11-09 21:46:34 | [diff] [blame] | 1117 | |
| 1118 | if (is_closing()) { |
| 1119 | // In this case, we drop the request which means the compositor waits |
| 1120 | // forever, which is fine since we're going to destroy it. |
| 1121 | return; |
| 1122 | } |
jonross | a2ff4f8 | 2018-02-16 17:27:46 | [diff] [blame] | 1123 | |
danakj | f8746079 | 2018-12-04 20:14:22 | [diff] [blame] | 1124 | // If we have a warmup in progress, wait for that and store the callback |
| 1125 | // to be run when the warmup completes. |
| 1126 | if (warmup_frame_sink_request_pending_) { |
| 1127 | after_warmup_callback_ = std::move(callback); |
| 1128 | return; |
| 1129 | } |
| 1130 | // If a warmup previously completed, use the result. |
| 1131 | if (warmup_frame_sink_) { |
| 1132 | std::move(callback).Run(std::move(warmup_frame_sink_)); |
| 1133 | return; |
| 1134 | } |
| 1135 | |
| 1136 | DoRequestNewLayerTreeFrameSink(std::move(callback)); |
| 1137 | } |
| 1138 | |
| 1139 | void RenderWidget::DoRequestNewLayerTreeFrameSink( |
| 1140 | LayerTreeFrameSinkCallback callback) { |
jonross | a2ff4f8 | 2018-02-16 17:27:46 | [diff] [blame] | 1141 | // TODO(jonross): have this generated by the LayerTreeFrameSink itself, which |
| 1142 | // would then handle binding. |
| 1143 | mojom::RenderFrameMetadataObserverPtr ptr; |
| 1144 | mojom::RenderFrameMetadataObserverRequest request = mojo::MakeRequest(&ptr); |
| 1145 | mojom::RenderFrameMetadataObserverClientPtrInfo client_info; |
| 1146 | mojom::RenderFrameMetadataObserverClientRequest client_request = |
| 1147 | mojo::MakeRequest(&client_info); |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 1148 | auto render_frame_metadata_observer = |
| 1149 | std::make_unique<RenderFrameMetadataObserverImpl>(std::move(request), |
| 1150 | std::move(client_info)); |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 1151 | layer_tree_view_->SetRenderFrameObserver( |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 1152 | std::move(render_frame_metadata_observer)); |
danakj | f5175437 | 2018-12-13 23:20:01 | [diff] [blame] | 1153 | GURL url = GetWebWidget()->GetURLForDebugTrace(); |
danakj | efabf31 | 2018-10-05 19:03:07 | [diff] [blame] | 1154 | // The |url| is not always available, fallback to a fixed string. |
| 1155 | if (url.is_empty()) |
| 1156 | url = GURL("chrome://gpu/RenderWidget::RequestNewLayerTreeFrameSink"); |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 1157 | // TODO(danakj): This may not be accurate, depending on the intent. A child |
| 1158 | // local root could be in the same process as the view, so if the client is |
| 1159 | // meant to designate the process type, it seems kRenderer would be the |
| 1160 | // correct choice. If client is meant to designate the widget type, then |
| 1161 | // kOOPIF would denote that it is not for the main frame. However, kRenderer |
| 1162 | // would also be used for other widgets such as popups. |
| 1163 | const char* client_name = for_child_local_root_frame_ ? kOOPIF : kRenderer; |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 1164 | compositor_deps_->RequestNewLayerTreeFrameSink( |
Scott Violet | b04f16c | 2018-11-27 00:48:46 | [diff] [blame] | 1165 | routing_id_, frame_swap_message_queue_, std::move(url), |
| 1166 | std::move(callback), std::move(client_request), std::move(ptr), |
| 1167 | client_name); |
[email protected] | ba91a79 | 2013-02-06 09:48:28 | [diff] [blame] | 1168 | } |
| 1169 | |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1170 | void RenderWidget::DidCommitAndDrawCompositorFrame() { |
| 1171 | // NOTE: Tests may break if this event is renamed or moved. See |
| 1172 | // tab_capture_performancetest.cc. |
| 1173 | TRACE_EVENT0("gpu", "RenderWidget::DidCommitAndDrawCompositorFrame"); |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 1174 | |
ericwilligers | 88e6974 | 2016-10-17 19:29:55 | [diff] [blame] | 1175 | for (auto& observer : render_frames_) |
| 1176 | observer.DidCommitAndDrawCompositorFrame(); |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 1177 | |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1178 | // Notify subclasses that we initiated the paint operation. |
| 1179 | DidInitiatePaint(); |
Yiming Zhou | 0f8836c2 | 2018-09-13 22:22:11 | [diff] [blame] | 1180 | |
Albert J. Wong | fb64e14 | 2018-10-16 01:10:45 | [diff] [blame] | 1181 | Send(new WidgetHostMsg_DidCommitAndDrawCompositorFrame(routing_id_)); |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1182 | } |
| 1183 | |
Stephen Chenney | 2388039 | 2019-04-02 18:36:54 | [diff] [blame] | 1184 | void RenderWidget::WillCommitCompositorFrame() { |
| 1185 | if (GetWebWidget()) |
| 1186 | GetWebWidget()->BeginCommitCompositorFrame(); |
| 1187 | } |
| 1188 | |
Saman Sami | 766e0b0 | 2018-01-31 17:19:20 | [diff] [blame] | 1189 | void RenderWidget::DidCommitCompositorFrame() { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1190 | if (delegate()) |
| 1191 | delegate()->DidCommitCompositorFrameForWidget(); |
Stephen Chenney | 2388039 | 2019-04-02 18:36:54 | [diff] [blame] | 1192 | if (GetWebWidget()) |
| 1193 | GetWebWidget()->EndCommitCompositorFrame(); |
Saman Sami | 766e0b0 | 2018-01-31 17:19:20 | [diff] [blame] | 1194 | } |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1195 | |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1196 | void RenderWidget::DidCompletePageScaleAnimation() { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1197 | if (delegate()) |
| 1198 | delegate()->DidCompletePageScaleAnimationForWidget(); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1199 | } |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1200 | |
danakj | cd41750 | 2019-03-13 16:13:21 | [diff] [blame] | 1201 | void RenderWidget::SetLayerTreeMutator( |
| 1202 | std::unique_ptr<cc::LayerTreeMutator> mutator) { |
| 1203 | layer_tree_view_->layer_tree_host()->SetLayerTreeMutator(std::move(mutator)); |
| 1204 | } |
| 1205 | |
Xida Chen | 83f1a0d1 | 2019-03-21 18:21:30 | [diff] [blame] | 1206 | void RenderWidget::SetPaintWorkletLayerPainterClient( |
| 1207 | std::unique_ptr<cc::PaintWorkletLayerPainter> client) { |
| 1208 | layer_tree_view_->layer_tree_host()->SetPaintWorkletLayerPainter( |
| 1209 | std::move(client)); |
| 1210 | } |
| 1211 | |
danakj | 26b9991 | 2019-02-08 18:58:19 | [diff] [blame] | 1212 | void RenderWidget::SetRootLayer(scoped_refptr<cc::Layer> layer) { |
| 1213 | layer_tree_view_->layer_tree_host()->SetRootLayer(std::move(layer)); |
| 1214 | } |
| 1215 | |
danakj | 53f46b8 | 2018-12-11 20:55:55 | [diff] [blame] | 1216 | void RenderWidget::ScheduleAnimation() { |
| 1217 | // This call is not needed in single thread mode for tests without a |
danakj | 0719e065 | 2019-03-14 21:19:11 | [diff] [blame] | 1218 | // scheduler, but they override this method in order to schedule a synchronous |
| 1219 | // composite task themselves. |
danakj | 53f46b8 | 2018-12-11 20:55:55 | [diff] [blame] | 1220 | layer_tree_view_->SetNeedsBeginFrame(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1221 | } |
| 1222 | |
danakj | efcb843 | 2019-01-16 18:47:14 | [diff] [blame] | 1223 | void RenderWidget::SetShowFPSCounter(bool show) { |
| 1224 | cc::LayerTreeHost* host = layer_tree_view_->layer_tree_host(); |
| 1225 | cc::LayerTreeDebugState debug_state = host->GetDebugState(); |
| 1226 | debug_state.show_fps_counter = show; |
| 1227 | host->SetDebugState(debug_state); |
| 1228 | } |
| 1229 | |
danakj | e691e85 | 2019-01-16 22:49:04 | [diff] [blame] | 1230 | void RenderWidget::SetShowPaintRects(bool show) { |
| 1231 | cc::LayerTreeHost* host = layer_tree_view_->layer_tree_host(); |
| 1232 | cc::LayerTreeDebugState debug_state = host->GetDebugState(); |
| 1233 | debug_state.show_paint_rects = show; |
| 1234 | host->SetDebugState(debug_state); |
| 1235 | } |
| 1236 | |
| 1237 | void RenderWidget::SetShowDebugBorders(bool show) { |
| 1238 | cc::LayerTreeHost* host = layer_tree_view_->layer_tree_host(); |
| 1239 | cc::LayerTreeDebugState debug_state = host->GetDebugState(); |
| 1240 | if (show) |
| 1241 | debug_state.show_debug_borders.set(); |
| 1242 | else |
| 1243 | debug_state.show_debug_borders.reset(); |
| 1244 | host->SetDebugState(debug_state); |
| 1245 | } |
| 1246 | |
| 1247 | void RenderWidget::SetShowScrollBottleneckRects(bool show) { |
| 1248 | cc::LayerTreeHost* host = layer_tree_view_->layer_tree_host(); |
| 1249 | cc::LayerTreeDebugState debug_state = host->GetDebugState(); |
| 1250 | debug_state.show_touch_event_handler_rects = show; |
| 1251 | debug_state.show_wheel_event_handler_rects = show; |
| 1252 | debug_state.show_non_fast_scrollable_rects = show; |
| 1253 | host->SetDebugState(debug_state); |
| 1254 | } |
| 1255 | |
| 1256 | void RenderWidget::SetShowHitTestBorders(bool show) { |
| 1257 | cc::LayerTreeHost* host = layer_tree_view_->layer_tree_host(); |
| 1258 | cc::LayerTreeDebugState debug_state = host->GetDebugState(); |
| 1259 | debug_state.show_hit_test_borders = show; |
| 1260 | host->SetDebugState(debug_state); |
| 1261 | } |
| 1262 | |
danakj | 40d0793 | 2019-02-28 18:07:10 | [diff] [blame] | 1263 | void RenderWidget::SetBackgroundColor(SkColor color) { |
| 1264 | layer_tree_view_->layer_tree_host()->set_background_color(color); |
| 1265 | } |
| 1266 | |
Stephen Chenney | d56b538 | 2019-01-29 00:37:02 | [diff] [blame] | 1267 | void RenderWidget::UpdateVisualState() { |
Ken Buchanan | ed449bb | 2018-02-01 21:02:05 | [diff] [blame] | 1268 | if (!GetWebWidget()) |
| 1269 | return; |
| 1270 | |
Stephen Chenney | d56b538 | 2019-01-29 00:37:02 | [diff] [blame] | 1271 | // We record metrics only when running in multi-threaded mode, not |
| 1272 | // single-thread mode for testing. |
| 1273 | bool record_main_frame_metrics = |
| 1274 | !!compositor_deps_->GetCompositorImplThreadTaskRunner(); |
| 1275 | |
Stephen Chenney | ec431261 | 2018-11-21 12:40:16 | [diff] [blame] | 1276 | // When recording main frame metrics set the lifecycle reason to |
| 1277 | // kBeginMainFrame, because this is the calller of UpdateLifecycle |
| 1278 | // for the main frame. Otherwise, set the reason to kTests, which is |
| 1279 | // the oinly other reason this method is called. |
| 1280 | WebWidget::LifecycleUpdateReason lifecycle_reason = |
| 1281 | record_main_frame_metrics |
| 1282 | ? WebWidget::LifecycleUpdateReason::kBeginMainFrame |
| 1283 | : WebWidget::LifecycleUpdateReason::kTest; |
| 1284 | GetWebWidget()->UpdateLifecycle(WebWidget::LifecycleUpdate::kAll, |
| 1285 | lifecycle_reason); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1286 | GetWebWidget()->SetSuppressFrameRequestsWorkaroundFor704763Only(false); |
tasak | b95dbb50c | 2017-02-08 18:07:50 | [diff] [blame] | 1287 | |
Robert Flack | 3ef2ffb | 2018-09-06 20:38:20 | [diff] [blame] | 1288 | if (first_update_visual_state_after_hidden_) { |
Takashi SAKAMOTO | 870f626 | 2017-08-22 04:08:27 | [diff] [blame] | 1289 | RecordTimeToFirstActivePaint(); |
| 1290 | first_update_visual_state_after_hidden_ = false; |
| 1291 | } |
| 1292 | } |
tasak | b95dbb50c | 2017-02-08 18:07:50 | [diff] [blame] | 1293 | |
Takashi SAKAMOTO | 870f626 | 2017-08-22 04:08:27 | [diff] [blame] | 1294 | void RenderWidget::RecordTimeToFirstActivePaint() { |
tasak | b95dbb50c | 2017-02-08 18:07:50 | [diff] [blame] | 1295 | RenderThreadImpl* render_thread_impl = RenderThreadImpl::current(); |
tasak | b95dbb50c | 2017-02-08 18:07:50 | [diff] [blame] | 1296 | base::TimeDelta sample = base::TimeTicks::Now() - was_shown_time_; |
Takashi SAKAMOTO | 870f626 | 2017-08-22 04:08:27 | [diff] [blame] | 1297 | if (render_thread_impl->NeedsToRecordFirstActivePaint(TTFAP_AFTER_PURGED)) { |
| 1298 | UMA_HISTOGRAM_TIMES("PurgeAndSuspend.Experimental.TimeToFirstActivePaint", |
| 1299 | sample); |
| 1300 | } |
| 1301 | if (render_thread_impl->NeedsToRecordFirstActivePaint( |
| 1302 | TTFAP_5MIN_AFTER_BACKGROUNDED)) { |
| 1303 | UMA_HISTOGRAM_TIMES( |
| 1304 | "PurgeAndSuspend.Experimental.TimeToFirstActivePaint." |
| 1305 | "AfterBackgrounded.5min", |
| 1306 | sample); |
| 1307 | } |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1308 | } |
| 1309 | |
Stephen Chenney | d56b538 | 2019-01-29 00:37:02 | [diff] [blame] | 1310 | void RenderWidget::RecordStartOfFrameMetrics() { |
Stephen Chenney | 2388039 | 2019-04-02 18:36:54 | [diff] [blame] | 1311 | if (GetWebWidget()) |
| 1312 | GetWebWidget()->RecordStartOfFrameMetrics(); |
Stephen Chenney | d56b538 | 2019-01-29 00:37:02 | [diff] [blame] | 1313 | } |
| 1314 | |
Stephen Chenney | 9879a5c | 2018-09-26 14:21:42 | [diff] [blame] | 1315 | void RenderWidget::RecordEndOfFrameMetrics(base::TimeTicks frame_begin_time) { |
Stephen Chenney | 2388039 | 2019-04-02 18:36:54 | [diff] [blame] | 1316 | if (GetWebWidget()) |
| 1317 | GetWebWidget()->RecordEndOfFrameMetrics(frame_begin_time); |
| 1318 | } |
Stephen Chenney | 9879a5c | 2018-09-26 14:21:42 | [diff] [blame] | 1319 | |
Stephen Chenney | 2388039 | 2019-04-02 18:36:54 | [diff] [blame] | 1320 | void RenderWidget::BeginUpdateLayers() { |
| 1321 | if (GetWebWidget()) |
| 1322 | GetWebWidget()->BeginUpdateLayers(); |
| 1323 | } |
| 1324 | |
| 1325 | void RenderWidget::EndUpdateLayers() { |
| 1326 | if (GetWebWidget()) |
Stephen Chenney | c3c5987d | 2019-04-15 20:40:07 | [diff] [blame] | 1327 | GetWebWidget()->EndUpdateLayers(); |
Stephen Chenney | 9879a5c | 2018-09-26 14:21:42 | [diff] [blame] | 1328 | } |
| 1329 | |
fsamuel | 78f86e4 | 2016-01-20 04:10:23 | [diff] [blame] | 1330 | void RenderWidget::WillBeginCompositorFrame() { |
| 1331 | TRACE_EVENT0("gpu", "RenderWidget::willBeginCompositorFrame"); |
| 1332 | |
Ken Buchanan | ed449bb | 2018-02-01 21:02:05 | [diff] [blame] | 1333 | if (!GetWebWidget()) |
| 1334 | return; |
| 1335 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1336 | GetWebWidget()->SetSuppressFrameRequestsWorkaroundFor704763Only(true); |
alancutter | 317a8e0 | 2017-04-05 10:09:29 | [diff] [blame] | 1337 | |
dglazkov | 06854c5c | 2016-08-31 00:19:59 | [diff] [blame] | 1338 | // The UpdateTextInputState can result in further layout and possibly |
| 1339 | // enable GPU acceleration so they need to be called before any painting |
| 1340 | // is done. |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1341 | UpdateTextInputState(); |
dglazkov | 06854c5c | 2016-08-31 00:19:59 | [diff] [blame] | 1342 | UpdateSelectionBounds(); |
| 1343 | |
ericwilligers | 88e6974 | 2016-10-17 19:29:55 | [diff] [blame] | 1344 | for (auto& observer : render_frame_proxies_) |
| 1345 | observer.WillBeginCompositorFrame(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1346 | } |
| 1347 | |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1348 | /////////////////////////////////////////////////////////////////////////////// |
| 1349 | // RenderWidgetInputHandlerDelegate |
| 1350 | |
avi | d7d6b2e | 2016-03-04 19:41:17 | [diff] [blame] | 1351 | void RenderWidget::FocusChangeComplete() { |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 1352 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 1353 | if (!frame_widget) |
ekaramad | 27ca69b1 | 2017-04-20 18:34:29 | [diff] [blame] | 1354 | return; |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 1355 | |
ekaramad | 27ca69b1 | 2017-04-20 18:34:29 | [diff] [blame] | 1356 | blink::WebLocalFrame* focused = |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 1357 | frame_widget->LocalRoot()->View()->FocusedFrame(); |
| 1358 | |
ekaramad | 27ca69b1 | 2017-04-20 18:34:29 | [diff] [blame] | 1359 | if (focused && focused->AutofillClient()) |
| 1360 | focused->AutofillClient()->DidCompleteFocusChangeInFrame(); |
avi | d7d6b2e | 2016-03-04 19:41:17 | [diff] [blame] | 1361 | } |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1362 | |
dtapuska | 1827dd2 | 2016-03-11 15:24:59 | [diff] [blame] | 1363 | void RenderWidget::ObserveGestureEventAndResult( |
| 1364 | const blink::WebGestureEvent& gesture_event, |
| 1365 | const gfx::Vector2dF& unused_delta, |
Sandra Sun | ac5cdd83 | 2017-12-11 03:27:13 | [diff] [blame] | 1366 | const cc::OverscrollBehavior& overscroll_behavior, |
dtapuska | 1827dd2 | 2016-03-11 15:24:59 | [diff] [blame] | 1367 | bool event_processed) { |
| 1368 | if (!compositor_deps_->IsElasticOverscrollEnabled()) |
| 1369 | return; |
| 1370 | |
| 1371 | cc::InputHandlerScrollResult scroll_result; |
| 1372 | scroll_result.did_scroll = event_processed; |
| 1373 | scroll_result.did_overscroll_root = !unused_delta.IsZero(); |
| 1374 | scroll_result.unused_scroll_delta = unused_delta; |
Sandra Sun | ac5cdd83 | 2017-12-11 03:27:13 | [diff] [blame] | 1375 | scroll_result.overscroll_behavior = overscroll_behavior; |
dtapuska | 1827dd2 | 2016-03-11 15:24:59 | [diff] [blame] | 1376 | |
Dave Tapuska | 04bc5ee9 | 2018-04-17 19:03:31 | [diff] [blame] | 1377 | widget_input_handler_manager_->ObserveGestureEventOnMainThread(gesture_event, |
| 1378 | scroll_result); |
dtapuska | 1827dd2 | 2016-03-11 15:24:59 | [diff] [blame] | 1379 | } |
| 1380 | |
avi | d7d6b2e | 2016-03-04 19:41:17 | [diff] [blame] | 1381 | void RenderWidget::OnDidHandleKeyEvent() { |
alexmos | 5656749 | 2016-09-13 00:52:46 | [diff] [blame] | 1382 | ClearEditCommands(); |
| 1383 | } |
| 1384 | |
| 1385 | void RenderWidget::SetEditCommandForNextKeyEvent(const std::string& name, |
| 1386 | const std::string& value) { |
| 1387 | ClearEditCommands(); |
| 1388 | edit_commands_.emplace_back(name, value); |
| 1389 | } |
| 1390 | |
| 1391 | void RenderWidget::ClearEditCommands() { |
| 1392 | edit_commands_.clear(); |
avi | d7d6b2e | 2016-03-04 19:41:17 | [diff] [blame] | 1393 | } |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1394 | |
chongz | a8ba91fc | 2016-08-16 21:39:17 | [diff] [blame] | 1395 | void RenderWidget::OnDidOverscroll(const ui::DidOverscrollParams& params) { |
Dave Tapuska | 04bc5ee9 | 2018-04-17 19:03:31 | [diff] [blame] | 1396 | if (mojom::WidgetInputHandlerHost* host = |
| 1397 | widget_input_handler_manager_->GetWidgetInputHandlerHost()) { |
| 1398 | host->DidOverscroll(params); |
Dave Tapuska | 139a72f | 2017-09-06 21:57:03 | [diff] [blame] | 1399 | } |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1400 | } |
| 1401 | |
fsamuel | e8326c74 | 2016-01-12 00:49:39 | [diff] [blame] | 1402 | void RenderWidget::SetInputHandler(RenderWidgetInputHandler* input_handler) { |
| 1403 | // Nothing to do here. RenderWidget created the |input_handler| and will take |
| 1404 | // ownership of it. We just verify here that we don't already have an input |
| 1405 | // handler. |
| 1406 | DCHECK(!input_handler_); |
| 1407 | } |
| 1408 | |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1409 | void RenderWidget::ShowVirtualKeyboard() { |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 1410 | // Blink can continue running and change input state between the Close IPC |
| 1411 | // and the task that actually closes this class. |
| 1412 | if (closing_) |
| 1413 | return; |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1414 | UpdateTextInputStateInternal(true, false); |
| 1415 | } |
| 1416 | |
changwan | 62f5729 | 2017-02-17 08:28:25 | [diff] [blame] | 1417 | void RenderWidget::ClearTextInputState() { |
| 1418 | text_input_info_ = blink::WebTextInputInfo(); |
| 1419 | text_input_type_ = ui::TextInputType::TEXT_INPUT_TYPE_NONE; |
| 1420 | text_input_mode_ = ui::TextInputMode::TEXT_INPUT_MODE_DEFAULT; |
| 1421 | can_compose_inline_ = false; |
| 1422 | text_input_flags_ = 0; |
AJITH KUMAR V | 041c0b0 | 2017-08-08 10:39:20 | [diff] [blame] | 1423 | next_previous_flags_ = kInvalidNextPreviousFlagsValue; |
changwan | 62f5729 | 2017-02-17 08:28:25 | [diff] [blame] | 1424 | } |
| 1425 | |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1426 | void RenderWidget::UpdateTextInputState() { |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 1427 | // Blink can continue running and change input state between the Close IPC |
| 1428 | // and the task that actually closes this class. |
| 1429 | if (closing_) |
| 1430 | return; |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1431 | UpdateTextInputStateInternal(false, false); |
| 1432 | } |
| 1433 | |
| 1434 | void RenderWidget::UpdateTextInputStateInternal(bool show_virtual_keyboard, |
| 1435 | bool reply_to_request) { |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1436 | TRACE_EVENT0("renderer", "RenderWidget::UpdateTextInputState"); |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1437 | |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1438 | if (ime_event_guard_) { |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1439 | DCHECK(!reply_to_request); |
| 1440 | // show_virtual_keyboard should still be effective even if it was set inside |
| 1441 | // the IME |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1442 | // event guard. |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1443 | if (show_virtual_keyboard) |
| 1444 | ime_event_guard_->set_show_virtual_keyboard(true); |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1445 | return; |
| 1446 | } |
| 1447 | |
dglazkov | 97b6c2b | 2016-10-25 17:35:55 | [diff] [blame] | 1448 | ui::TextInputType new_type = GetTextInputType(); |
| 1449 | if (IsDateTimeInput(new_type)) |
| 1450 | return; // Not considered as a text input field in WebKit/Chromium. |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1451 | |
dglazkov | 97b6c2b | 2016-10-25 17:35:55 | [diff] [blame] | 1452 | blink::WebTextInputInfo new_info; |
ekaramad | 5aff194 | 2017-01-06 01:26:35 | [diff] [blame] | 1453 | if (auto* controller = GetInputMethodController()) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1454 | new_info = controller->TextInputInfo(); |
dtapuska | c4dd5be | 2016-10-25 15:11:10 | [diff] [blame] | 1455 | const ui::TextInputMode new_mode = |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1456 | ConvertWebTextInputMode(new_info.input_mode); |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1457 | |
| 1458 | bool new_can_compose_inline = CanComposeInline(); |
| 1459 | |
| 1460 | // Only sends text input params if they are changed or if the ime should be |
| 1461 | // shown. |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1462 | if (show_virtual_keyboard || reply_to_request || |
changwan | 38c3eb61 | 2016-12-09 01:45:56 | [diff] [blame] | 1463 | text_input_type_ != new_type || text_input_mode_ != new_mode || |
| 1464 | text_input_info_ != new_info || |
| 1465 | can_compose_inline_ != new_can_compose_inline) { |
ekaramad | 9053e57b | 2016-04-26 20:00:38 | [diff] [blame] | 1466 | TextInputState params; |
dglazkov | 97b6c2b | 2016-10-25 17:35:55 | [diff] [blame] | 1467 | params.type = new_type; |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1468 | params.mode = new_mode; |
| 1469 | params.flags = new_info.flags; |
AJITH KUMAR V | 9e7b557 | 2017-11-14 00:54:21 | [diff] [blame] | 1470 | #if defined(OS_ANDROID) |
AJITH KUMAR V | 041c0b0 | 2017-08-08 10:39:20 | [diff] [blame] | 1471 | if (next_previous_flags_ == kInvalidNextPreviousFlagsValue) { |
| 1472 | // Due to a focus change, values will be reset by the frame. |
| 1473 | // That case we only need fresh NEXT/PREVIOUS information. |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1474 | // Also we won't send WidgetHostMsg_TextInputStateChanged if next/previous |
AJITH KUMAR V | 041c0b0 | 2017-08-08 10:39:20 | [diff] [blame] | 1475 | // focusable status is changed. |
| 1476 | if (auto* controller = GetInputMethodController()) { |
| 1477 | next_previous_flags_ = |
| 1478 | controller->ComputeWebTextInputNextPreviousFlags(); |
| 1479 | } else { |
| 1480 | // For safety in case GetInputMethodController() is null, because -1 is |
| 1481 | // invalid value to send to browser process. |
| 1482 | next_previous_flags_ = 0; |
| 1483 | } |
| 1484 | } |
AJITH KUMAR V | 9e7b557 | 2017-11-14 00:54:21 | [diff] [blame] | 1485 | #else |
| 1486 | next_previous_flags_ = 0; |
| 1487 | #endif |
AJITH KUMAR V | 041c0b0 | 2017-08-08 10:39:20 | [diff] [blame] | 1488 | params.flags |= next_previous_flags_; |
Yuichiro Hanada | 1b19cf85 | 2019-01-18 16:12:26 | [diff] [blame] | 1489 | params.value = new_info.value.Utf16(); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1490 | params.selection_start = new_info.selection_start; |
| 1491 | params.selection_end = new_info.selection_end; |
| 1492 | params.composition_start = new_info.composition_start; |
| 1493 | params.composition_end = new_info.composition_end; |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1494 | params.can_compose_inline = new_can_compose_inline; |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 1495 | // TODO(changwan): change instances of show_ime_if_needed to |
| 1496 | // show_virtual_keyboard. |
| 1497 | params.show_ime_if_needed = show_virtual_keyboard; |
| 1498 | params.reply_to_request = reply_to_request; |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1499 | Send(new WidgetHostMsg_TextInputStateChanged(routing_id(), params)); |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1500 | |
| 1501 | text_input_info_ = new_info; |
dglazkov | 97b6c2b | 2016-10-25 17:35:55 | [diff] [blame] | 1502 | text_input_type_ = new_type; |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1503 | text_input_mode_ = new_mode; |
| 1504 | can_compose_inline_ = new_can_compose_inline; |
| 1505 | text_input_flags_ = new_info.flags; |
Eric Karl | 706ea671 | 2018-12-21 22:41:38 | [diff] [blame] | 1506 | |
| 1507 | #if defined(OS_ANDROID) |
| 1508 | // If we send a new TextInputStateChanged message, we must also deliver a |
| 1509 | // new RenderFrameMetadata, as the IME will need this info to be updated. |
| 1510 | // TODO(ericrk): Consider folding the above IPC into RenderFrameMetadata. |
| 1511 | // https://crbug.com/912309 |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 1512 | if (IsSurfaceSynchronizationEnabled()) { |
Eric Karl | 706ea671 | 2018-12-21 22:41:38 | [diff] [blame] | 1513 | layer_tree_view_->RequestForceSendMetadata(); |
| 1514 | } |
| 1515 | #endif |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1516 | } |
| 1517 | } |
| 1518 | |
| 1519 | bool RenderWidget::WillHandleGestureEvent(const blink::WebGestureEvent& event) { |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 1520 | possible_drag_event_info_.event_source = |
| 1521 | ui::DragDropTypes::DRAG_EVENT_SOURCE_TOUCH; |
| 1522 | possible_drag_event_info_.event_location = |
Ella Ge | 1116059d | 2018-03-21 02:06:13 | [diff] [blame] | 1523 | gfx::ToFlooredPoint(event.PositionInScreen()); |
avi | d7d6b2e | 2016-03-04 19:41:17 | [diff] [blame] | 1524 | |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1525 | return false; |
| 1526 | } |
| 1527 | |
| 1528 | bool RenderWidget::WillHandleMouseEvent(const blink::WebMouseEvent& event) { |
ericwilligers | 88e6974 | 2016-10-17 19:29:55 | [diff] [blame] | 1529 | for (auto& observer : render_frames_) |
| 1530 | observer.RenderWidgetWillHandleMouseEvent(); |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 1531 | |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 1532 | possible_drag_event_info_.event_source = |
| 1533 | ui::DragDropTypes::DRAG_EVENT_SOURCE_MOUSE; |
| 1534 | possible_drag_event_info_.event_location = |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1535 | gfx::Point(event.PositionInScreen().x, event.PositionInScreen().y); |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 1536 | |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1537 | if (delegate()) |
| 1538 | return delegate()->RenderWidgetWillHandleMouseEventForWidget(event); |
avi | d7d6b2e | 2016-03-04 19:41:17 | [diff] [blame] | 1539 | |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 1540 | return false; |
[email protected] | fd84779 | 2013-10-24 17:12:35 | [diff] [blame] | 1541 | } |
| 1542 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1543 | /////////////////////////////////////////////////////////////////////////////// |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1544 | // RenderWidgetScreenMetricsDelegate |
| 1545 | |
bokan | c63441c | 2016-04-27 15:49:12 | [diff] [blame] | 1546 | void RenderWidget::ResizeWebWidget() { |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1547 | gfx::Size size = GetSizeForWebWidget(); |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1548 | if (delegate()) { |
| 1549 | delegate()->ResizeWebWidgetForWidget(size, top_controls_height_, |
| 1550 | bottom_controls_height_, |
| 1551 | browser_controls_shrink_blink_size_); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1552 | return; |
| 1553 | } |
| 1554 | GetWebWidget()->Resize(size); |
bokan | c63441c | 2016-04-27 15:49:12 | [diff] [blame] | 1555 | } |
| 1556 | |
| 1557 | gfx::Size RenderWidget::GetSizeForWebWidget() const { |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 1558 | if (compositor_deps_->IsUseZoomForDSFEnabled()) { |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 1559 | return gfx::ScaleToCeiledSize(size_, |
| 1560 | GetOriginalScreenInfo().device_scale_factor); |
| 1561 | } |
bokan | c63441c | 2016-04-27 15:49:12 | [diff] [blame] | 1562 | |
| 1563 | return size_; |
| 1564 | } |
| 1565 | |
danakj | 0d963bd | 2019-02-20 18:00:46 | [diff] [blame] | 1566 | gfx::Size RenderWidget::CompositorViewportSize() const { |
| 1567 | return layer_tree_view_->layer_tree_host()->device_viewport_size(); |
| 1568 | } |
| 1569 | |
akaba | 3483d8f | 2018-07-10 21:43:09 | [diff] [blame] | 1570 | void RenderWidget::UpdateZoom(double zoom_level) { |
akaba | c6bd121 | 2018-06-25 20:10:48 | [diff] [blame] | 1571 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 1572 | if (!frame_widget) |
| 1573 | return; |
| 1574 | RenderFrameImpl* render_frame = |
| 1575 | RenderFrameImpl::FromWebFrame(frame_widget->LocalRoot()); |
| 1576 | |
akaba | 3483d8f | 2018-07-10 21:43:09 | [diff] [blame] | 1577 | // Return early if zoom level is unchanged. |
| 1578 | if (render_frame->GetZoomLevel() == zoom_level) { |
akaba | c6bd121 | 2018-06-25 20:10:48 | [diff] [blame] | 1579 | return; |
| 1580 | } |
| 1581 | |
akaba | 3483d8f | 2018-07-10 21:43:09 | [diff] [blame] | 1582 | render_frame->SetZoomLevel(zoom_level); |
akaba | c6bd121 | 2018-06-25 20:10:48 | [diff] [blame] | 1583 | |
| 1584 | for (auto& observer : render_frame_proxies_) |
akaba | 3483d8f | 2018-07-10 21:43:09 | [diff] [blame] | 1585 | observer.OnZoomLevelChanged(zoom_level); |
akaba | c6bd121 | 2018-06-25 20:10:48 | [diff] [blame] | 1586 | |
| 1587 | for (auto& plugin : browser_plugins_) |
akaba | 3483d8f | 2018-07-10 21:43:09 | [diff] [blame] | 1588 | plugin.OnZoomLevelChanged(zoom_level); |
akaba | c6bd121 | 2018-06-25 20:10:48 | [diff] [blame] | 1589 | } |
| 1590 | |
Fady Samuel | 799e7219 | 2018-04-25 21:16:57 | [diff] [blame] | 1591 | void RenderWidget::SynchronizeVisualProperties(const VisualProperties& params) { |
Miguel Casas | 5e101805 | 2018-01-09 19:17:36 | [diff] [blame] | 1592 | |
Fady Samuel | e62be40 | 2018-03-29 03:19:53 | [diff] [blame] | 1593 | gfx::Size new_compositor_viewport_pixel_size = |
| 1594 | params.auto_resize_enabled |
| 1595 | ? gfx::ScaleToCeiledSize(size_, |
| 1596 | params.screen_info.device_scale_factor) |
| 1597 | : params.compositor_viewport_pixel_size; |
Fady Samuel | 84d8a1f7 | 2018-11-08 00:26:17 | [diff] [blame] | 1598 | UpdateSurfaceAndScreenInfo(params.local_surface_id_allocation.value_or( |
| 1599 | viz::LocalSurfaceIdAllocation()), |
| 1600 | new_compositor_viewport_pixel_size, |
| 1601 | params.screen_info); |
Vladimir Levin | 98d76dad | 2018-04-21 00:21:29 | [diff] [blame] | 1602 | UpdateCaptureSequenceNumber(params.capture_sequence_number); |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 1603 | layer_tree_view_->SetBrowserControlsHeight( |
| 1604 | params.top_controls_height, params.bottom_controls_height, |
| 1605 | params.browser_controls_shrink_blink_size); |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1606 | |
akaba | 3483d8f | 2018-07-10 21:43:09 | [diff] [blame] | 1607 | UpdateZoom(params.zoom_level); |
akaba | c6bd121 | 2018-06-25 20:10:48 | [diff] [blame] | 1608 | |
danakj | 21604ce | 2018-12-19 16:01:22 | [diff] [blame] | 1609 | if (!params.auto_resize_enabled) { |
| 1610 | visible_viewport_size_ = params.visible_viewport_size; |
danakj | 21604ce | 2018-12-19 16:01:22 | [diff] [blame] | 1611 | display_mode_ = params.display_mode; |
danakj | 21604ce | 2018-12-19 16:01:22 | [diff] [blame] | 1612 | size_ = params.new_size; |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1613 | |
danakj | 21604ce | 2018-12-19 16:01:22 | [diff] [blame] | 1614 | ResizeWebWidget(); |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1615 | |
danakj | b4cec10 | 2019-01-30 19:22:13 | [diff] [blame] | 1616 | gfx::Size visual_viewport_size = visible_viewport_size_; |
danakj | 21604ce | 2018-12-19 16:01:22 | [diff] [blame] | 1617 | if (compositor_deps_->IsUseZoomForDSFEnabled()) { |
danakj | b4cec10 | 2019-01-30 19:22:13 | [diff] [blame] | 1618 | visual_viewport_size = gfx::ScaleToCeiledSize( |
| 1619 | visual_viewport_size, GetOriginalScreenInfo().device_scale_factor); |
danakj | 21604ce | 2018-12-19 16:01:22 | [diff] [blame] | 1620 | } |
| 1621 | GetWebWidget()->ResizeVisualViewport(visual_viewport_size); |
bokan | 71cb5b1 | 2016-04-27 03:45:22 | [diff] [blame] | 1622 | |
danakj | f928477 | 2019-01-23 18:29:14 | [diff] [blame] | 1623 | // NOTE: We may have entered fullscreen mode without changing our size. |
| 1624 | SetIsFullscreen(params.is_fullscreen_granted); |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1625 | } |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1626 | } |
| 1627 | |
| 1628 | void RenderWidget::SetScreenMetricsEmulationParameters( |
| 1629 | bool enabled, |
| 1630 | const blink::WebDeviceEmulationParams& params) { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1631 | // This is only supported in RenderView, which has an delegate(). |
| 1632 | DCHECK(delegate()); |
| 1633 | delegate()->SetScreenMetricsEmulationParametersForWidget(enabled, params); |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1634 | } |
| 1635 | |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1636 | void RenderWidget::SetScreenRects(const gfx::Rect& widget_screen_rect, |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1637 | const gfx::Rect& window_screen_rect) { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1638 | widget_screen_rect_ = widget_screen_rect; |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 1639 | window_screen_rect_ = window_screen_rect; |
| 1640 | } |
| 1641 | |
| 1642 | /////////////////////////////////////////////////////////////////////////////// |
[email protected] | f98d7e3c | 2010-09-13 22:30:46 | [diff] [blame] | 1643 | // WebWidgetClient |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1644 | |
Chris Harrelson | d7ab99b | 2018-01-24 17:51:36 | [diff] [blame] | 1645 | void RenderWidget::IntrinsicSizingInfoChanged( |
| 1646 | const blink::WebIntrinsicSizingInfo& sizing_info) { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1647 | Send(new WidgetHostMsg_IntrinsicSizingInfoChanged(routing_id_, sizing_info)); |
Chris Harrelson | d7ab99b | 2018-01-24 17:51:36 | [diff] [blame] | 1648 | } |
| 1649 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1650 | void RenderWidget::DidMeaningfulLayout(blink::WebMeaningfulLayout layout_type) { |
| 1651 | if (layout_type == blink::WebMeaningfulLayout::kVisuallyNonEmpty) { |
Albert J. Wong | fb64e14 | 2018-10-16 01:10:45 | [diff] [blame] | 1652 | QueueMessage(new WidgetHostMsg_DidFirstVisuallyNonEmptyPaint(routing_id_)); |
dglazkov | f0e1d6d | 2015-10-10 02:13:48 | [diff] [blame] | 1653 | } |
dglazkov | 79c42610 | 2015-08-31 21:22:43 | [diff] [blame] | 1654 | |
ericwilligers | 88e6974 | 2016-10-17 19:29:55 | [diff] [blame] | 1655 | for (auto& observer : render_frames_) |
| 1656 | observer.DidMeaningfulLayout(layout_type); |
dglazkov | 79c42610 | 2015-08-31 21:22:43 | [diff] [blame] | 1657 | } |
| 1658 | |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1659 | // static |
dcheng | cedca561 | 2016-04-09 01:40:15 | [diff] [blame] | 1660 | std::unique_ptr<cc::SwapPromise> RenderWidget::QueueMessageImpl( |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1661 | IPC::Message* msg, |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1662 | FrameSwapMessageQueue* frame_swap_message_queue, |
| 1663 | scoped_refptr<IPC::SyncMessageFilter> sync_message_filter, |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1664 | int source_frame_number) { |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1665 | bool first_message_for_frame = false; |
Sadrul Habib Chowdhury | 4e0335cf | 2018-07-31 20:08:49 | [diff] [blame] | 1666 | frame_swap_message_queue->QueueMessageForFrame( |
| 1667 | source_frame_number, base::WrapUnique(msg), &first_message_for_frame); |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 1668 | if (!first_message_for_frame) |
| 1669 | return nullptr; |
| 1670 | return std::make_unique<QueueMessageSwapPromise>( |
| 1671 | sync_message_filter, frame_swap_message_queue, source_frame_number); |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1672 | } |
| 1673 | |
danakj | 5380269 | 2018-07-25 21:46:44 | [diff] [blame] | 1674 | void RenderWidget::SetHandlingInputEvent(bool handling_input_event) { |
| 1675 | input_handler_->set_handling_input_event(handling_input_event); |
| 1676 | } |
| 1677 | |
Sadrul Habib Chowdhury | 4e0335cf | 2018-07-31 20:08:49 | [diff] [blame] | 1678 | void RenderWidget::QueueMessage(IPC::Message* msg) { |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 1679 | if (closing_) |
| 1680 | return; |
| 1681 | |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1682 | // RenderThreadImpl::current() is NULL in some tests. |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 1683 | if (!RenderThreadImpl::current()) { |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1684 | Send(msg); |
| 1685 | return; |
| 1686 | } |
| 1687 | |
dcheng | cedca561 | 2016-04-09 01:40:15 | [diff] [blame] | 1688 | std::unique_ptr<cc::SwapPromise> swap_promise = |
Sadrul Habib Chowdhury | 4e0335cf | 2018-07-31 20:08:49 | [diff] [blame] | 1689 | QueueMessageImpl(msg, frame_swap_message_queue_.get(), |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1690 | RenderThreadImpl::current()->sync_message_filter(), |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 1691 | layer_tree_view_->GetSourceFrameNumber()); |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 1692 | if (swap_promise) { |
| 1693 | layer_tree_view_->layer_tree_host()->QueueSwapPromise( |
| 1694 | std::move(swap_promise)); |
| 1695 | } |
[email protected] | 586871b | 2014-07-22 17:05:11 | [diff] [blame] | 1696 | } |
| 1697 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1698 | void RenderWidget::DidChangeCursor(const WebCursorInfo& cursor_info) { |
[email protected] | 7c51b0ee | 2009-07-08 21:49:30 | [diff] [blame] | 1699 | // TODO(darin): Eliminate this temporary. |
Mike Wasserman | f95c2d9d | 2019-04-17 00:44:21 | [diff] [blame] | 1700 | WebCursor cursor((CursorInfo(cursor_info))); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1701 | // Only send a SetCursor message if we need to make a change. |
Navid Zolghadr | 293bb86 | 2018-12-12 18:15:41 | [diff] [blame] | 1702 | if (input_handler_->DidChangeCursor(cursor)) |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1703 | Send(new WidgetHostMsg_SetCursor(routing_id_, cursor)); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1704 | } |
| 1705 | |
aelias | 5971e47d | 2017-06-16 02:39:38 | [diff] [blame] | 1706 | void RenderWidget::AutoscrollStart(const blink::WebFloatPoint& point) { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1707 | Send(new WidgetHostMsg_AutoscrollStart(routing_id_, point)); |
aelias | 5971e47d | 2017-06-16 02:39:38 | [diff] [blame] | 1708 | } |
| 1709 | |
| 1710 | void RenderWidget::AutoscrollFling(const blink::WebFloatSize& velocity) { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1711 | Send(new WidgetHostMsg_AutoscrollFling(routing_id_, velocity)); |
aelias | 5971e47d | 2017-06-16 02:39:38 | [diff] [blame] | 1712 | } |
| 1713 | |
| 1714 | void RenderWidget::AutoscrollEnd() { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1715 | Send(new WidgetHostMsg_AutoscrollEnd(routing_id_)); |
aelias | 5971e47d | 2017-06-16 02:39:38 | [diff] [blame] | 1716 | } |
| 1717 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1718 | // We are supposed to get a single call to Show for a newly created RenderWidget |
| 1719 | // that was created via RenderWidget::CreateWebView. So, we wait until this |
| 1720 | // point to dispatch the ShowWidget message. |
| 1721 | // |
| 1722 | // This method provides us with the information about how to display the newly |
[email protected] | 5f9de588 | 2011-09-30 23:36:28 | [diff] [blame] | 1723 | // created RenderWidget (i.e., as a blocked popup or as a new tab). |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1724 | // |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1725 | void RenderWidget::Show(WebNavigationPolicy policy) { |
danakj | 65f423b7 | 2018-10-10 17:21:20 | [diff] [blame] | 1726 | if (!show_callback_) { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1727 | if (delegate()) { |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1728 | // When SupportsMultipleWindows is disabled, popups are reusing |
danakj | 65f423b7 | 2018-10-10 17:21:20 | [diff] [blame] | 1729 | // the view's RenderWidget. In some scenarios, this makes blink to call |
| 1730 | // Show() twice. But otherwise, if it is enabled, we should not visit |
| 1731 | // Show() more than once. |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1732 | DCHECK(!delegate()->SupportsMultipleWindowsForWidget()); |
danakj | 65f423b7 | 2018-10-10 17:21:20 | [diff] [blame] | 1733 | return; |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1734 | } else { |
danakj | 65f423b7 | 2018-10-10 17:21:20 | [diff] [blame] | 1735 | NOTREACHED() << "received extraneous Show call"; |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1736 | } |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 1737 | } |
| 1738 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1739 | DCHECK(routing_id_ != MSG_ROUTING_NONE); |
nick | f7b3822 | 2016-11-22 21:59:35 | [diff] [blame] | 1740 | |
| 1741 | // The opener is responsible for actually showing this widget. |
danakj | df1ceb7 | 2018-07-18 20:02:25 | [diff] [blame] | 1742 | std::move(show_callback_).Run(this, policy, initial_rect_); |
nick | f7b3822 | 2016-11-22 21:59:35 | [diff] [blame] | 1743 | |
bokan | c007c3a | 2015-02-03 07:15:56 | [diff] [blame] | 1744 | // NOTE: initial_rect_ may still have its default values at this point, but |
[email protected] | 8de12d94 | 2010-11-17 20:42:44 | [diff] [blame] | 1745 | // that's okay. It'll be ignored if as_popup is false, or the browser |
| 1746 | // process will impose a default position otherwise. |
bokan | c007c3a | 2015-02-03 07:15:56 | [diff] [blame] | 1747 | SetPendingWindowRect(initial_rect_); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1748 | } |
| 1749 | |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 1750 | LayerTreeView* RenderWidget::InitializeLayerTreeView() { |
| 1751 | TRACE_EVENT0("blink", "RenderWidget::InitializeLayerTreeView"); |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 1752 | |
| 1753 | layer_tree_view_ = std::make_unique<LayerTreeView>( |
| 1754 | this, compositor_deps_->GetCompositorMainThreadTaskRunner(), |
| 1755 | compositor_deps_->GetCompositorImplThreadTaskRunner(), |
| 1756 | compositor_deps_->GetTaskGraphRunner(), |
| 1757 | compositor_deps_->GetWebMainThreadScheduler()); |
| 1758 | layer_tree_view_->Initialize( |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 1759 | GenerateLayerTreeSettings(compositor_deps_, for_child_local_root_frame_, |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 1760 | screen_info_.rect.size(), |
| 1761 | screen_info_.device_scale_factor), |
| 1762 | compositor_deps_->CreateUkmRecorderFactory()); |
| 1763 | |
Fady Samuel | 1c1ad369 | 2018-11-06 23:28:40 | [diff] [blame] | 1764 | UpdateSurfaceAndScreenInfo(local_surface_id_allocation_from_parent_, |
danakj | 0d963bd | 2019-02-20 18:00:46 | [diff] [blame] | 1765 | CompositorViewportSize(), screen_info_); |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 1766 | layer_tree_view_->SetContentSourceId(current_content_source_id_); |
danakj | 953af05 | 2019-02-06 19:13:18 | [diff] [blame] | 1767 | // If the widget is hidden, delay starting the compositor until the user shows |
| 1768 | // it. Also if the RenderWidget is frozen, we delay starting the compositor |
| 1769 | // until we expect to use the widget, which will be signaled through |
| 1770 | // WarmupCompositor(). |
| 1771 | if (!is_frozen_ && !is_hidden_) |
| 1772 | StartStopCompositor(); |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 1773 | |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 1774 | DCHECK_NE(MSG_ROUTING_NONE, routing_id_); |
| 1775 | layer_tree_view_->SetFrameSinkId( |
| 1776 | viz::FrameSinkId(RenderThread::Get()->GetClientId(), routing_id_)); |
| 1777 | |
| 1778 | RenderThreadImpl* render_thread = RenderThreadImpl::current(); |
| 1779 | if (render_thread) { |
| 1780 | input_event_queue_ = base::MakeRefCounted<MainThreadEventQueue>( |
| 1781 | this, render_thread->GetWebMainThreadScheduler()->InputTaskRunner(), |
danakj | 953af05 | 2019-02-06 19:13:18 | [diff] [blame] | 1782 | render_thread->GetWebMainThreadScheduler(), |
| 1783 | /*allow_raf_aligned_input=*/!compositor_never_visible_); |
danakj | 17216f4d | 2018-10-16 22:57:32 | [diff] [blame] | 1784 | } |
| 1785 | |
| 1786 | return layer_tree_view_.get(); |
| 1787 | } |
| 1788 | |
danakj | 953af05 | 2019-02-06 19:13:18 | [diff] [blame] | 1789 | void RenderWidget::StartStopCompositor() { |
| 1790 | if (compositor_never_visible_) |
| 1791 | return; |
danakj | de8b748 | 2018-11-15 23:45:02 | [diff] [blame] | 1792 | |
danakj | 953af05 | 2019-02-06 19:13:18 | [diff] [blame] | 1793 | if (is_frozen_) { |
| 1794 | layer_tree_view_->SetVisible(false); |
| 1795 | // Drop all gpu resources, this makes SetVisible(true) more expensive/slower |
| 1796 | // but we don't expect to use this RenderWidget again until some possible |
| 1797 | // future navigation. This brings us a bit closer to emulating deleting the |
| 1798 | // RenderWidget instead of just stopping the compositor. |
| 1799 | layer_tree_view_->ReleaseLayerTreeFrameSink(); |
| 1800 | } else if (is_hidden_) { |
| 1801 | layer_tree_view_->SetVisible(false); |
| 1802 | } else { |
| 1803 | layer_tree_view_->SetVisible(true); |
| 1804 | } |
danakj | de8b748 | 2018-11-15 23:45:02 | [diff] [blame] | 1805 | } |
| 1806 | |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 1807 | void RenderWidget::SetIsFrozen(bool is_frozen) { |
| 1808 | DCHECK_NE(is_frozen, is_frozen_); |
| 1809 | is_frozen_ = is_frozen; |
danakj | 953af05 | 2019-02-06 19:13:18 | [diff] [blame] | 1810 | // If hidden, then frozen changing doesn't change anything with the |
| 1811 | // compositor since when hidden the compositor is always stopped. |
| 1812 | if (!is_hidden_) |
| 1813 | StartStopCompositor(); |
danakj | de8b748 | 2018-11-15 23:45:02 | [diff] [blame] | 1814 | } |
| 1815 | |
danakj | f8746079 | 2018-12-04 20:14:22 | [diff] [blame] | 1816 | void RenderWidget::WarmupCompositor() { |
| 1817 | DCHECK(is_frozen_); |
danakj | 953af05 | 2019-02-06 19:13:18 | [diff] [blame] | 1818 | if (compositor_never_visible_) |
danakj | f8746079 | 2018-12-04 20:14:22 | [diff] [blame] | 1819 | return; |
| 1820 | |
| 1821 | // Keeping things simple. This would cancel any outstanding warmup if we |
| 1822 | // happened to have one (this should be basically impossible). This avoids any |
| 1823 | // extra book keeping about the outstanding reqeust. |
| 1824 | warmup_weak_ptr_factory_.InvalidateWeakPtrs(); |
| 1825 | // And if we already did a warmup then we're done. |
| 1826 | if (warmup_frame_sink_) |
| 1827 | return; |
| 1828 | |
| 1829 | // Mark us pending the warmup frame sink *before* calling |
| 1830 | // DoRequestNewLayerTreeFrameSink() as it may run the reply callback |
| 1831 | // synchronously. So we don't want to change any state after the call |
| 1832 | // to DoRequestNewLayerTreeFrameSink() here. |
| 1833 | warmup_frame_sink_request_pending_ = true; |
| 1834 | |
| 1835 | auto cb = base::BindOnce(&RenderWidget::OnReplyForWarmupCompositor, |
| 1836 | warmup_weak_ptr_factory_.GetWeakPtr()); |
| 1837 | DoRequestNewLayerTreeFrameSink(std::move(cb)); |
| 1838 | } |
| 1839 | |
| 1840 | void RenderWidget::OnReplyForWarmupCompositor( |
| 1841 | std::unique_ptr<cc::LayerTreeFrameSink> sink) { |
| 1842 | warmup_frame_sink_request_pending_ = false; |
| 1843 | |
| 1844 | if (after_warmup_callback_) |
| 1845 | std::move(after_warmup_callback_).Run(std::move(sink)); |
| 1846 | else |
| 1847 | warmup_frame_sink_ = std::move(sink); |
| 1848 | } |
| 1849 | |
| 1850 | void RenderWidget::AbortWarmupCompositor() { |
| 1851 | warmup_frame_sink_request_pending_ = false; |
| 1852 | // Drop any pending warmup. |
| 1853 | warmup_weak_ptr_factory_.InvalidateWeakPtrs(); |
| 1854 | // And drop any completed one. |
| 1855 | warmup_frame_sink_.reset(); |
| 1856 | |
| 1857 | // If we had saved a callback to run after warmup, just do so now indicating |
| 1858 | // failure. |
| 1859 | if (after_warmup_callback_) |
| 1860 | std::move(after_warmup_callback_).Run(nullptr); |
| 1861 | } |
| 1862 | |
[email protected] | 2533ce1 | 2009-05-09 00:02:24 | [diff] [blame] | 1863 | void RenderWidget::DoDeferredClose() { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1864 | Send(new WidgetHostMsg_Close(routing_id_)); |
[email protected] | 2533ce1 | 2009-05-09 00:02:24 | [diff] [blame] | 1865 | } |
| 1866 | |
danakj | 45e4a4f | 2019-03-12 22:50:42 | [diff] [blame] | 1867 | void RenderWidget::ClosePopupWidgetSoon() { |
| 1868 | // Only should be called for popup widgets. |
| 1869 | DCHECK(!for_child_local_root_frame_); |
| 1870 | DCHECK(!delegate_); |
| 1871 | |
| 1872 | CloseWidgetSoon(); |
| 1873 | } |
| 1874 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 1875 | void RenderWidget::CloseWidgetSoon() { |
Avi Drissman | 07d2245 | 2019-03-25 17:56:39 | [diff] [blame] | 1876 | DCHECK(RenderThread::IsMainThread()); |
danakj | 292b63e | 2018-11-19 20:47:06 | [diff] [blame] | 1877 | // Prevent compositor from setting up new IPC channels, since we know a |
| 1878 | // WidgetMsg_Close is coming. We do this immediately, not in DoDeferredClose, |
| 1879 | // as the caller (eg WebPagePopupImpl) may start tearing down things after |
| 1880 | // calling this method, including detaching the frame from this RenderWidget. |
| 1881 | // Then trying to make a LayerTreeFrameSink would crash. |
| 1882 | // https://crbug.com/906340 |
| 1883 | host_will_close_this_ = true; |
| 1884 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1885 | // If a page calls window.close() twice, we'll end up here twice, but that's |
| 1886 | // OK. It is safe to send multiple Close messages. |
danakj | 292b63e | 2018-11-19 20:47:06 | [diff] [blame] | 1887 | // |
[email protected] | 2533ce1 | 2009-05-09 00:02:24 | [diff] [blame] | 1888 | // Ask the RenderWidgetHost to initiate close. We could be called from deep |
danakj | 295c43f18 | 2019-03-13 16:37:17 | [diff] [blame] | 1889 | // in Javascript. If we ask the RenderWidgetHost to close now, the window |
| 1890 | // could be closed before the JS finishes executing, thanks to nested message |
| 1891 | // loops running and handling the resuliting Close IPC. So instead, post a |
[email protected] | 2533ce1 | 2009-05-09 00:02:24 | [diff] [blame] | 1892 | // message back to the message loop, which won't run until the JS is |
danakj | 295c43f18 | 2019-03-13 16:37:17 | [diff] [blame] | 1893 | // complete, and then the Close request can be sent. |
Hajime Hoshi | 315a61f | 2018-08-14 17:27:28 | [diff] [blame] | 1894 | GetCleanupTaskRunner()->PostTask( |
| 1895 | FROM_HERE, base::BindOnce(&RenderWidget::DoDeferredClose, this)); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1896 | } |
| 1897 | |
| 1898 | void RenderWidget::Close() { |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 1899 | // This was done immediately in the |for_child_local_root_frame_| case in the |
| 1900 | // OnClose() IPC handler. |
| 1901 | if (!for_child_local_root_frame_) |
danakj | 5c5269b | 2018-11-06 00:39:11 | [diff] [blame] | 1902 | CloseWebWidget(); |
| 1903 | |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 1904 | layer_tree_view_.reset(); |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1905 | if (delegate()) |
| 1906 | delegate()->DidCloseWidget(); |
Albert J. Wong | d593de53 | 2018-09-06 05:42:15 | [diff] [blame] | 1907 | // Note the ACK is a control message going to the RenderProcessHost. |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 1908 | RenderThread::Get()->Send(new WidgetHostMsg_Close_ACK(routing_id())); |
danakj | 6ec39d30 | 2019-03-15 22:43:22 | [diff] [blame] | 1909 | closed_ = true; |
Ken Buchanan | ed449bb | 2018-02-01 21:02:05 | [diff] [blame] | 1910 | } |
| 1911 | |
| 1912 | void RenderWidget::CloseWebWidget() { |
danakj | 35314ab | 2018-10-19 16:37:34 | [diff] [blame] | 1913 | // If the browser has not sent OnDisableDeviceEmulation, we have an emulator |
| 1914 | // hanging out still. Destroying it must happen *after* the IPC route is |
| 1915 | // removed so that another IPC does not arrive and re-create the emulator |
| 1916 | // during closing. |
| 1917 | // |
| 1918 | // This destruction is normally part of an IPC and expects objects to be alive |
| 1919 | // that would be alive while the IPC route is active such as the |
| 1920 | // |layer_tree_view_|. So we ensure that it is the first thing to be |
| 1921 | // destroyed here before deleting things from the RenderWidget or the |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1922 | // delegate(). |
danakj | 35314ab | 2018-10-19 16:37:34 | [diff] [blame] | 1923 | // |
| 1924 | // TODO(danakj): The emulator could reset to non-emulated values in an |
| 1925 | // explicit method call (instead of in the destructor) that occurs when |
| 1926 | // emulation is disabled, but does not need to occur during RenderWidget |
| 1927 | // closing. Then we would not have to destroy this so carefully. |
| 1928 | screen_metrics_emulator_.reset(); |
| 1929 | |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1930 | // When delegate() is present, the RenderWidget is for a main frame, |
danakj | 974b8ae | 2019-02-05 00:26:26 | [diff] [blame] | 1931 | // and the GetWebWidget() will be a WebFrameWidget, which is not the same as |
| 1932 | // |webwidget_internal_|. The WebFrameWidget will be closed when the main |
| 1933 | // frame is detached, so we do not close it here. But it does not close the |
| 1934 | // |webwidget_internal_| since this class takes responsibility for that here |
| 1935 | // in all cases. |
danakj | 5c5269b | 2018-11-06 00:39:11 | [diff] [blame] | 1936 | webwidget_internal_->Close(); |
| 1937 | webwidget_internal_ = nullptr; |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 1938 | |
| 1939 | close_weak_ptr_factory_.InvalidateWeakPtrs(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 1940 | } |
| 1941 | |
Mitsuru Oshima | 3c07b33 | 2018-02-06 04:56:50 | [diff] [blame] | 1942 | void RenderWidget::UpdateWebViewWithDeviceScaleFactor() { |
| 1943 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 1944 | blink::WebFrame* current_frame = |
| 1945 | frame_widget ? frame_widget->LocalRoot() : nullptr; |
| 1946 | blink::WebView* webview = current_frame ? current_frame->View() : nullptr; |
| 1947 | if (webview) { |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 1948 | if (compositor_deps_->IsUseZoomForDSFEnabled()) |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 1949 | webview->SetZoomFactorForDeviceScaleFactor( |
| 1950 | GetWebScreenInfo().device_scale_factor); |
Mitsuru Oshima | 3c07b33 | 2018-02-06 04:56:50 | [diff] [blame] | 1951 | else |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 1952 | webview->SetDeviceScaleFactor(GetWebScreenInfo().device_scale_factor); |
Mitsuru Oshima | 3c07b33 | 2018-02-06 04:56:50 | [diff] [blame] | 1953 | |
| 1954 | webview->GetSettings()->SetPreferCompositingToLCDTextEnabled( |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 1955 | PreferCompositingToLCDText(compositor_deps_, |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 1956 | GetWebScreenInfo().device_scale_factor)); |
Mitsuru Oshima | 3c07b33 | 2018-02-06 04:56:50 | [diff] [blame] | 1957 | } |
| 1958 | } |
| 1959 | |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 1960 | blink::WebFrameWidget* RenderWidget::GetFrameWidget() const { |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 1961 | // TODO(danakj): Remove this check and don't call this method for non-frames. |
| 1962 | if (!for_frame()) |
| 1963 | return nullptr; |
| 1964 | // TODO(danakj): Is this needed? IPCs stop after closing, but code used to |
| 1965 | // check for a null WebWidget. |
| 1966 | if (closing_) |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 1967 | return nullptr; |
| 1968 | |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 1969 | blink::WebWidget* widget; |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1970 | if (delegate()) { |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 1971 | // Main frame WebFrameWidgets are held by the delegate, the internal widget |
| 1972 | // points directly to the WebView. |
| 1973 | // TODO(ekaramad): We should drop IPCs when |is_frozen_| instead of |
| 1974 | // handling them and finding a null here. However there is also the case |
| 1975 | // of the frame being detached without the widget being frozen to be |
| 1976 | // resolved (https://crbug.com/906340). So for now this can return null. |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 1977 | widget = delegate()->GetWebWidgetForWidget(); |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 1978 | } else { |
| 1979 | // Subframes always have a WebFrameWidget themselves. |
| 1980 | widget = webwidget_internal_; |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 1981 | } |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 1982 | return static_cast<blink::WebFrameWidget*>(widget); |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 1983 | } |
| 1984 | |
bokan | 841fdc7 | 2016-10-06 00:16:35 | [diff] [blame] | 1985 | void RenderWidget::ScreenRectToEmulatedIfNeeded(WebRect* window_rect) const { |
| 1986 | DCHECK(window_rect); |
| 1987 | float scale = popup_origin_scale_for_emulation_; |
| 1988 | if (!scale) |
| 1989 | return; |
| 1990 | window_rect->x = |
| 1991 | popup_view_origin_for_emulation_.x() + |
| 1992 | (window_rect->x - popup_screen_origin_for_emulation_.x()) / scale; |
| 1993 | window_rect->y = |
| 1994 | popup_view_origin_for_emulation_.y() + |
| 1995 | (window_rect->y - popup_screen_origin_for_emulation_.y()) / scale; |
| 1996 | } |
| 1997 | |
| 1998 | void RenderWidget::EmulatedToScreenRectIfNeeded(WebRect* window_rect) const { |
| 1999 | DCHECK(window_rect); |
| 2000 | float scale = popup_origin_scale_for_emulation_; |
| 2001 | if (!scale) |
| 2002 | return; |
| 2003 | window_rect->x = |
| 2004 | popup_screen_origin_for_emulation_.x() + |
| 2005 | (window_rect->x - popup_view_origin_for_emulation_.x()) * scale; |
| 2006 | window_rect->y = |
| 2007 | popup_screen_origin_for_emulation_.y() + |
| 2008 | (window_rect->y - popup_view_origin_for_emulation_.y()) * scale; |
| 2009 | } |
| 2010 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2011 | WebRect RenderWidget::WindowRect() { |
bokan | 841fdc7 | 2016-10-06 00:16:35 | [diff] [blame] | 2012 | WebRect rect; |
bokan | 6b08cd2 | 2016-10-05 00:55:21 | [diff] [blame] | 2013 | if (pending_window_rect_count_) { |
| 2014 | // NOTE(mbelshe): If there is a pending_window_rect_, then getting |
| 2015 | // the RootWindowRect is probably going to return wrong results since the |
| 2016 | // browser may not have processed the Move yet. There isn't really anything |
| 2017 | // good to do in this case, and it shouldn't happen - since this size is |
| 2018 | // only really needed for windowToScreen, which is only used for Popups. |
bokan | 841fdc7 | 2016-10-06 00:16:35 | [diff] [blame] | 2019 | rect = pending_window_rect_; |
| 2020 | } else { |
| 2021 | rect = window_screen_rect_; |
bokan | 6b08cd2 | 2016-10-05 00:55:21 | [diff] [blame] | 2022 | } |
[email protected] | 2533ce1 | 2009-05-09 00:02:24 | [diff] [blame] | 2023 | |
bokan | 841fdc7 | 2016-10-06 00:16:35 | [diff] [blame] | 2024 | ScreenRectToEmulatedIfNeeded(&rect); |
| 2025 | return rect; |
bokan | 6b08cd2 | 2016-10-05 00:55:21 | [diff] [blame] | 2026 | } |
| 2027 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2028 | WebRect RenderWidget::ViewRect() { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2029 | WebRect rect = widget_screen_rect_; |
bokan | 841fdc7 | 2016-10-06 00:16:35 | [diff] [blame] | 2030 | ScreenRectToEmulatedIfNeeded(&rect); |
| 2031 | return rect; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 2032 | } |
| 2033 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2034 | void RenderWidget::SetToolTipText(const blink::WebString& text, |
[email protected] | 8a9d6ca3 | 2011-06-06 20:11:30 | [diff] [blame] | 2035 | WebTextDirection hint) { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2036 | Send(new WidgetHostMsg_SetTooltipText(routing_id_, text.Utf16(), hint)); |
[email protected] | 8a9d6ca3 | 2011-06-06 20:11:30 | [diff] [blame] | 2037 | } |
| 2038 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2039 | void RenderWidget::SetWindowRect(const WebRect& rect_in_screen) { |
danakj | 81d601e6 | 2018-10-09 22:15:05 | [diff] [blame] | 2040 | // This path is for the renderer to change the on-screen position/size of |
| 2041 | // the widget by changing its window rect. This is not possible for |
| 2042 | // RenderWidgets whose position/size are controlled by layout from another |
danakj | 6dcbc596 | 2018-11-16 16:45:42 | [diff] [blame] | 2043 | // frame tree (ie. child local root frames), as the window rect can only be |
| 2044 | // set by the browser. |
| 2045 | if (for_child_local_root_frame_) |
danakj | 81d601e6 | 2018-10-09 22:15:05 | [diff] [blame] | 2046 | return; |
| 2047 | |
oshima | 33ec97cd | 2015-12-14 19:40:24 | [diff] [blame] | 2048 | WebRect window_rect = rect_in_screen; |
bokan | 841fdc7 | 2016-10-06 00:16:35 | [diff] [blame] | 2049 | EmulatedToScreenRectIfNeeded(&window_rect); |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 2050 | |
danakj | 7602f4f | 2019-01-31 18:03:23 | [diff] [blame] | 2051 | if (synchronous_resize_mode_for_testing_) { |
Kent Tamura | 21d1de6 | 2018-12-10 04:45:20 | [diff] [blame] | 2052 | // This is a web-test-only path. At one point, it was planned to be |
danakj | 65f423b7 | 2018-10-10 17:21:20 | [diff] [blame] | 2053 | // removed. See https://crbug.com/309760. |
bokan | c007c3a | 2015-02-03 07:15:56 | [diff] [blame] | 2054 | SetWindowRectSynchronously(window_rect); |
danakj | 65f423b7 | 2018-10-10 17:21:20 | [diff] [blame] | 2055 | return; |
| 2056 | } |
| 2057 | |
| 2058 | if (show_callback_) { |
| 2059 | // The widget is not shown yet. Delay the |window_rect| being sent to the |
| 2060 | // browser until Show() is called so it can be sent with that IPC, once the |
| 2061 | // browser is ready for the info. |
| 2062 | initial_rect_ = window_rect; |
| 2063 | } else { |
| 2064 | Send(new WidgetHostMsg_RequestSetBounds(routing_id_, window_rect)); |
| 2065 | SetPendingWindowRect(window_rect); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 2066 | } |
| 2067 | } |
| 2068 | |
[email protected] | 2533ce1 | 2009-05-09 00:02:24 | [diff] [blame] | 2069 | void RenderWidget::SetPendingWindowRect(const WebRect& rect) { |
| 2070 | pending_window_rect_ = rect; |
| 2071 | pending_window_rect_count_++; |
[email protected] | 2533ce1 | 2009-05-09 00:02:24 | [diff] [blame] | 2072 | |
bokan | 6b08cd2 | 2016-10-05 00:55:21 | [diff] [blame] | 2073 | // Popups don't get size updates back from the browser so just store the set |
| 2074 | // values. |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 2075 | if (!for_frame()) { |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2076 | window_screen_rect_ = rect; |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2077 | widget_screen_rect_ = rect; |
[email protected] | 2533ce1 | 2009-05-09 00:02:24 | [diff] [blame] | 2078 | } |
[email protected] | d454745 | 2008-08-28 18:36:37 | [diff] [blame] | 2079 | } |
| 2080 | |
wjmaclean | ee244e0 | 2017-05-26 21:06:07 | [diff] [blame] | 2081 | void RenderWidget::OnShowContextMenu(ui::MenuSourceType source_type, |
| 2082 | const gfx::Point& location) { |
wjmaclean | ee244e0 | 2017-05-26 21:06:07 | [diff] [blame] | 2083 | has_host_context_menu_location_ = true; |
| 2084 | host_context_menu_location_ = location; |
| 2085 | if (GetWebWidget()) { |
| 2086 | GetWebWidget()->ShowContextMenu( |
| 2087 | static_cast<blink::WebMenuSourceType>(source_type)); |
| 2088 | } |
| 2089 | has_host_context_menu_location_ = false; |
| 2090 | } |
| 2091 | |
[email protected] | fa7b1dc | 2010-06-23 17:53:04 | [diff] [blame] | 2092 | void RenderWidget::OnImeSetComposition( |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 2093 | const base::string16& text, |
Ryan Landay | 9e42fd74 | 2017-08-12 01:59:11 | [diff] [blame] | 2094 | const std::vector<WebImeTextSpan>& ime_text_spans, |
chongz | 7eb75280 | 2016-01-27 21:28:07 | [diff] [blame] | 2095 | const gfx::Range& replacement_range, |
Ryan Landay | 9e42fd74 | 2017-08-12 01:59:11 | [diff] [blame] | 2096 | int selection_start, |
| 2097 | int selection_end) { |
ekaramad | 5aff194 | 2017-01-06 01:26:35 | [diff] [blame] | 2098 | if (!ShouldHandleImeEvents()) |
| 2099 | return; |
| 2100 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 2101 | #if BUILDFLAG(ENABLE_PLUGINS) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2102 | if (auto* plugin = GetFocusedPepperPluginInsideWidget()) { |
Ryan Landay | 9e42fd74 | 2017-08-12 01:59:11 | [diff] [blame] | 2103 | plugin->render_frame()->OnImeSetComposition(text, ime_text_spans, |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2104 | selection_start, selection_end); |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2105 | return; |
| 2106 | } |
| 2107 | #endif |
[email protected] | 66fca5bc | 2013-05-23 06:58:29 | [diff] [blame] | 2108 | ImeEventGuard guard(this); |
ekaramad | 2daaf67 | 2016-11-10 20:29:01 | [diff] [blame] | 2109 | blink::WebInputMethodController* controller = GetInputMethodController(); |
ekaramad | 2daaf67 | 2016-11-10 20:29:01 | [diff] [blame] | 2110 | if (!controller || |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2111 | !controller->SetComposition( |
Ryan Landay | 9e42fd74 | 2017-08-12 01:59:11 | [diff] [blame] | 2112 | WebString::FromUTF16(text), WebVector<WebImeTextSpan>(ime_text_spans), |
ekaramad | ce32ef9f | 2017-02-09 17:33:56 | [diff] [blame] | 2113 | replacement_range.IsValid() |
| 2114 | ? WebRange(replacement_range.start(), replacement_range.length()) |
| 2115 | : WebRange(), |
| 2116 | selection_start, selection_end)) { |
[email protected] | fa7b1dc | 2010-06-23 17:53:04 | [diff] [blame] | 2117 | // If we failed to set the composition text, then we need to let the browser |
| 2118 | // process to cancel the input method's ongoing composition session, to make |
| 2119 | // sure we are in a consistent state. |
Dave Tapuska | 04bc5ee9 | 2018-04-17 19:03:31 | [diff] [blame] | 2120 | if (mojom::WidgetInputHandlerHost* host = |
| 2121 | widget_input_handler_manager_->GetWidgetInputHandlerHost()) { |
| 2122 | host->ImeCancelComposition(); |
Dave Tapuska | 139a72f | 2017-09-06 21:57:03 | [diff] [blame] | 2123 | } |
[email protected] | 7f00efa | 2010-04-15 05:01:26 | [diff] [blame] | 2124 | } |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 2125 | UpdateCompositionInfo(false /* not an immediate request */); |
[email protected] | fa7b1dc | 2010-06-23 17:53:04 | [diff] [blame] | 2126 | } |
| 2127 | |
rlanday | 7efe230 | 2017-01-11 00:14:28 | [diff] [blame] | 2128 | void RenderWidget::OnImeCommitText( |
| 2129 | const base::string16& text, |
Ryan Landay | 9e42fd74 | 2017-08-12 01:59:11 | [diff] [blame] | 2130 | const std::vector<WebImeTextSpan>& ime_text_spans, |
rlanday | 7efe230 | 2017-01-11 00:14:28 | [diff] [blame] | 2131 | const gfx::Range& replacement_range, |
| 2132 | int relative_cursor_pos) { |
ekaramad | 5aff194 | 2017-01-06 01:26:35 | [diff] [blame] | 2133 | if (!ShouldHandleImeEvents()) |
| 2134 | return; |
| 2135 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 2136 | #if BUILDFLAG(ENABLE_PLUGINS) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2137 | if (auto* plugin = GetFocusedPepperPluginInsideWidget()) { |
| 2138 | plugin->render_frame()->OnImeCommitText(text, replacement_range, |
| 2139 | relative_cursor_pos); |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2140 | return; |
| 2141 | } |
| 2142 | #endif |
[email protected] | 66fca5bc | 2013-05-23 06:58:29 | [diff] [blame] | 2143 | ImeEventGuard guard(this); |
fsamuel | e8326c74 | 2016-01-12 00:49:39 | [diff] [blame] | 2144 | input_handler_->set_handling_input_event(true); |
ekaramad | b6483a05 | 2017-02-10 02:23:26 | [diff] [blame] | 2145 | if (auto* controller = GetInputMethodController()) { |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2146 | controller->CommitText( |
Ryan Landay | 9e42fd74 | 2017-08-12 01:59:11 | [diff] [blame] | 2147 | WebString::FromUTF16(text), WebVector<WebImeTextSpan>(ime_text_spans), |
ekaramad | ce32ef9f | 2017-02-09 17:33:56 | [diff] [blame] | 2148 | replacement_range.IsValid() |
| 2149 | ? WebRange(replacement_range.start(), replacement_range.length()) |
| 2150 | : WebRange(), |
| 2151 | relative_cursor_pos); |
ekaramad | b6483a05 | 2017-02-10 02:23:26 | [diff] [blame] | 2152 | } |
aelias | 87b8f7c | 2016-09-14 03:19:29 | [diff] [blame] | 2153 | input_handler_->set_handling_input_event(false); |
| 2154 | UpdateCompositionInfo(false /* not an immediate request */); |
| 2155 | } |
| 2156 | |
| 2157 | void RenderWidget::OnImeFinishComposingText(bool keep_selection) { |
ekaramad | 5aff194 | 2017-01-06 01:26:35 | [diff] [blame] | 2158 | if (!ShouldHandleImeEvents()) |
| 2159 | return; |
| 2160 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 2161 | #if BUILDFLAG(ENABLE_PLUGINS) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2162 | if (auto* plugin = GetFocusedPepperPluginInsideWidget()) { |
| 2163 | plugin->render_frame()->OnImeFinishComposingText(keep_selection); |
aelias | 87b8f7c | 2016-09-14 03:19:29 | [diff] [blame] | 2164 | return; |
| 2165 | } |
| 2166 | #endif |
| 2167 | |
changwan | 38c3eb61 | 2016-12-09 01:45:56 | [diff] [blame] | 2168 | if (!GetWebWidget()) |
aelias | 87b8f7c | 2016-09-14 03:19:29 | [diff] [blame] | 2169 | return; |
| 2170 | ImeEventGuard guard(this); |
| 2171 | input_handler_->set_handling_input_event(true); |
ekaramad | 2daaf67 | 2016-11-10 20:29:01 | [diff] [blame] | 2172 | if (auto* controller = GetInputMethodController()) { |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2173 | controller->FinishComposingText( |
| 2174 | keep_selection ? WebInputMethodController::kKeepSelection |
| 2175 | : WebInputMethodController::kDoNotKeepSelection); |
ekaramad | 2daaf67 | 2016-11-10 20:29:01 | [diff] [blame] | 2176 | } |
fsamuel | e8326c74 | 2016-01-12 00:49:39 | [diff] [blame] | 2177 | input_handler_->set_handling_input_event(false); |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 2178 | UpdateCompositionInfo(false /* not an immediate request */); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 2179 | } |
| 2180 | |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2181 | void RenderWidget::UpdateSurfaceAndScreenInfo( |
Fady Samuel | 1c1ad369 | 2018-11-06 23:28:40 | [diff] [blame] | 2182 | const viz::LocalSurfaceIdAllocation& new_local_surface_id_allocation, |
danakj | 9c4e7b81 | 2019-02-19 22:04:27 | [diff] [blame] | 2183 | const gfx::Size& compositor_viewport_pixel_size, |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2184 | const ScreenInfo& new_screen_info) { |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2185 | bool orientation_changed = |
| 2186 | screen_info_.orientation_angle != new_screen_info.orientation_angle || |
| 2187 | screen_info_.orientation_type != new_screen_info.orientation_type; |
| 2188 | bool web_device_scale_factor_changed = |
| 2189 | screen_info_.device_scale_factor != new_screen_info.device_scale_factor; |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 2190 | ScreenInfo previous_original_screen_info = GetOriginalScreenInfo(); |
Christopher Cameron | be7ecea | 2018-02-27 00:47:19 | [diff] [blame] | 2191 | |
Fady Samuel | 1c1ad369 | 2018-11-06 23:28:40 | [diff] [blame] | 2192 | local_surface_id_allocation_from_parent_ = new_local_surface_id_allocation; |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2193 | screen_info_ = new_screen_info; |
Christopher Cameron | be7ecea | 2018-02-27 00:47:19 | [diff] [blame] | 2194 | |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 2195 | // Note carefully that the DSF specified in |new_screen_info| is not the |
| 2196 | // DSF used by the compositor during device emulation! |
| 2197 | layer_tree_view_->SetViewportSizeAndScale( |
danakj | 9c4e7b81 | 2019-02-19 22:04:27 | [diff] [blame] | 2198 | compositor_viewport_pixel_size, |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 2199 | GetOriginalScreenInfo().device_scale_factor, |
| 2200 | local_surface_id_allocation_from_parent_); |
danakj | 9c4e7b81 | 2019-02-19 22:04:27 | [diff] [blame] | 2201 | // The ViewportVisibleRect derives from the LayerTreeView's viewport size, |
| 2202 | // which is set above. |
| 2203 | layer_tree_view_->SetViewportVisibleRect(ViewportVisibleRect()); |
danakj | 04d128a | 2019-01-25 02:10:20 | [diff] [blame] | 2204 | layer_tree_view_->SetRasterColorSpace( |
| 2205 | screen_info_.color_space.GetRasterColorSpace()); |
Christopher Cameron | be7ecea | 2018-02-27 00:47:19 | [diff] [blame] | 2206 | |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2207 | if (orientation_changed) |
| 2208 | OnOrientationChange(); |
Christopher Cameron | be7ecea | 2018-02-27 00:47:19 | [diff] [blame] | 2209 | |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 2210 | if (previous_original_screen_info != GetOriginalScreenInfo()) { |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2211 | for (auto& observer : render_frame_proxies_) |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 2212 | observer.OnScreenInfoChanged(GetOriginalScreenInfo()); |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2213 | |
| 2214 | // Notify all embedded BrowserPlugins of the updated ScreenInfo. |
| 2215 | for (auto& observer : browser_plugins_) |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 2216 | observer.ScreenInfoChanged(GetOriginalScreenInfo()); |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2217 | } |
| 2218 | |
| 2219 | if (web_device_scale_factor_changed) |
Christopher Cameron | be7ecea | 2018-02-27 00:47:19 | [diff] [blame] | 2220 | UpdateWebViewWithDeviceScaleFactor(); |
oshima | d527903 | 2015-12-16 18:22:33 | [diff] [blame] | 2221 | } |
| 2222 | |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2223 | void RenderWidget::SetWindowRectSynchronously( |
| 2224 | const gfx::Rect& new_window_rect) { |
| 2225 | VisualProperties visual_properties; |
| 2226 | visual_properties.screen_info = screen_info_; |
| 2227 | visual_properties.new_size = new_window_rect.size(); |
| 2228 | visual_properties.compositor_viewport_pixel_size = gfx::ScaleToCeiledSize( |
| 2229 | new_window_rect.size(), GetWebScreenInfo().device_scale_factor); |
| 2230 | visual_properties.visible_viewport_size = new_window_rect.size(); |
| 2231 | visual_properties.is_fullscreen_granted = is_fullscreen_granted_; |
| 2232 | visual_properties.display_mode = display_mode_; |
Fady Samuel | 84d8a1f7 | 2018-11-08 00:26:17 | [diff] [blame] | 2233 | visual_properties.local_surface_id_allocation = |
| 2234 | local_surface_id_allocation_from_parent_; |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2235 | // We are resizing the window from the renderer, so allocate a new |
| 2236 | // viz::LocalSurfaceId to avoid surface invariants violations in tests. |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 2237 | layer_tree_view_->RequestNewLocalSurfaceId(); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2238 | SynchronizeVisualProperties(visual_properties); |
| 2239 | |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2240 | widget_screen_rect_ = new_window_rect; |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2241 | window_screen_rect_ = new_window_rect; |
danakj | 65f423b7 | 2018-10-10 17:21:20 | [diff] [blame] | 2242 | if (show_callback_) { |
| 2243 | // Tests may call here directly to control the window rect. If |
| 2244 | // Show() did not happen yet, the rect is stored to be passed to the |
| 2245 | // browser when the RenderWidget requests Show(). |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2246 | initial_rect_ = new_window_rect; |
danakj | 65f423b7 | 2018-10-10 17:21:20 | [diff] [blame] | 2247 | } |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2248 | } |
| 2249 | |
Vladimir Levin | 98d76dad | 2018-04-21 00:21:29 | [diff] [blame] | 2250 | void RenderWidget::UpdateCaptureSequenceNumber( |
| 2251 | uint32_t capture_sequence_number) { |
| 2252 | if (capture_sequence_number == last_capture_sequence_number_) |
| 2253 | return; |
| 2254 | last_capture_sequence_number_ = capture_sequence_number; |
| 2255 | |
| 2256 | // Notify observers of the new capture sequence number. |
| 2257 | for (auto& observer : render_frame_proxies_) |
| 2258 | observer.UpdateCaptureSequenceNumber(capture_sequence_number); |
| 2259 | for (auto& observer : browser_plugins_) |
| 2260 | observer.UpdateCaptureSequenceNumber(capture_sequence_number); |
| 2261 | } |
| 2262 | |
[email protected] | 4873c7d | 2009-07-16 06:36:28 | [diff] [blame] | 2263 | void RenderWidget::OnSetTextDirection(WebTextDirection direction) { |
EhsanK | 955ba58 | 2017-11-30 21:14:40 | [diff] [blame] | 2264 | if (auto* frame = GetFocusedWebLocalFrameInWidget()) |
| 2265 | frame->SetTextDirection(direction); |
[email protected] | 07f95333 | 2009-03-25 04:31:11 | [diff] [blame] | 2266 | } |
| 2267 | |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2268 | void RenderWidget::OnUpdateScreenRects(const gfx::Rect& widget_screen_rect, |
[email protected] | 80ad862 | 2012-11-07 16:33:03 | [diff] [blame] | 2269 | const gfx::Rect& window_screen_rect) { |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 2270 | if (screen_metrics_emulator_) { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2271 | screen_metrics_emulator_->OnUpdateScreenRects(widget_screen_rect, |
mfomitchev | 2600fd7c | 2016-02-17 20:53:39 | [diff] [blame] | 2272 | window_screen_rect); |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 2273 | } else { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2274 | SetScreenRects(widget_screen_rect, window_screen_rect); |
[email protected] | b2e4c7013 | 2013-10-03 02:07:51 | [diff] [blame] | 2275 | } |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2276 | Send(new WidgetHostMsg_UpdateScreenRects_ACK(routing_id())); |
[email protected] | 80ad862 | 2012-11-07 16:33:03 | [diff] [blame] | 2277 | } |
| 2278 | |
kenrb | ea73179 | 2017-01-13 15:10:48 | [diff] [blame] | 2279 | void RenderWidget::OnSetViewportIntersection( |
Ken Buchanan | b2c9e26 | 2018-03-10 16:53:31 | [diff] [blame] | 2280 | const gfx::Rect& viewport_intersection, |
Stefan Zager | 54e2583 | 2018-08-14 22:15:31 | [diff] [blame] | 2281 | const gfx::Rect& compositor_visible_rect, |
Stefan Zager | 0926c9c | 2019-03-12 02:46:09 | [diff] [blame] | 2282 | blink::FrameOcclusionState occlusion_state) { |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2283 | if (auto* frame_widget = GetFrameWidget()) { |
Ken Buchanan | b2c9e26 | 2018-03-10 16:53:31 | [diff] [blame] | 2284 | compositor_visible_rect_ = compositor_visible_rect; |
Stefan Zager | 54e2583 | 2018-08-14 22:15:31 | [diff] [blame] | 2285 | frame_widget->SetRemoteViewportIntersection(viewport_intersection, |
Stefan Zager | 0926c9c | 2019-03-12 02:46:09 | [diff] [blame] | 2286 | occlusion_state); |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 2287 | layer_tree_view_->SetViewportVisibleRect(ViewportVisibleRect()); |
kenrb | ea73179 | 2017-01-13 15:10:48 | [diff] [blame] | 2288 | } |
| 2289 | } |
| 2290 | |
kenrb | 0432378 | 2017-06-23 01:23:32 | [diff] [blame] | 2291 | void RenderWidget::OnSetIsInert(bool inert) { |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 2292 | if (auto* frame_widget = GetFrameWidget()) |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2293 | frame_widget->SetIsInert(inert); |
kenrb | 0432378 | 2017-06-23 01:23:32 | [diff] [blame] | 2294 | } |
| 2295 | |
sunxd | 540a996 | 2018-05-24 22:51:06 | [diff] [blame] | 2296 | void RenderWidget::OnSetInheritedEffectiveTouchAction( |
| 2297 | cc::TouchAction touch_action) { |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 2298 | if (auto* frame_widget = GetFrameWidget()) |
sunxd | 540a996 | 2018-05-24 22:51:06 | [diff] [blame] | 2299 | frame_widget->SetInheritedEffectiveTouchAction(touch_action); |
sunxd | 540a996 | 2018-05-24 22:51:06 | [diff] [blame] | 2300 | } |
| 2301 | |
Ken Buchanan | 8a319fb | 2017-11-15 18:37:12 | [diff] [blame] | 2302 | void RenderWidget::OnUpdateRenderThrottlingStatus(bool is_throttled, |
| 2303 | bool subtree_throttled) { |
danakj | 89ae453 | 2018-12-12 22:52:55 | [diff] [blame] | 2304 | if (auto* frame_widget = GetFrameWidget()) |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2305 | frame_widget->UpdateRenderThrottlingStatus(is_throttled, subtree_throttled); |
Ken Buchanan | 8a319fb | 2017-11-15 18:37:12 | [diff] [blame] | 2306 | } |
| 2307 | |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2308 | void RenderWidget::OnDragTargetDragEnter( |
| 2309 | const std::vector<DropData::Metadata>& drop_meta_data, |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 2310 | const gfx::PointF& client_point, |
| 2311 | const gfx::PointF& screen_point, |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2312 | WebDragOperationsMask ops, |
| 2313 | int key_modifiers) { |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2314 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 2315 | if (!frame_widget) |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2316 | return; |
| 2317 | |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2318 | WebDragOperation operation = frame_widget->DragTargetDragEnter( |
| 2319 | DropMetaDataToWebDragData(drop_meta_data), client_point, screen_point, |
| 2320 | ops, key_modifiers); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2321 | |
| 2322 | Send(new DragHostMsg_UpdateDragCursor(routing_id(), operation)); |
| 2323 | } |
| 2324 | |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 2325 | void RenderWidget::OnDragTargetDragOver(const gfx::PointF& client_point, |
| 2326 | const gfx::PointF& screen_point, |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2327 | WebDragOperationsMask ops, |
| 2328 | int key_modifiers) { |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2329 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 2330 | if (!frame_widget) |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2331 | return; |
| 2332 | |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2333 | WebDragOperation operation = frame_widget->DragTargetDragOver( |
| 2334 | ConvertWindowPointToViewport(client_point), screen_point, ops, |
| 2335 | key_modifiers); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2336 | |
| 2337 | Send(new DragHostMsg_UpdateDragCursor(routing_id(), operation)); |
| 2338 | } |
| 2339 | |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 2340 | void RenderWidget::OnDragTargetDragLeave(const gfx::PointF& client_point, |
| 2341 | const gfx::PointF& screen_point) { |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2342 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 2343 | if (!frame_widget) |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2344 | return; |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2345 | |
| 2346 | frame_widget |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2347 | ->DragTargetDragLeave(ConvertWindowPointToViewport(client_point), |
kenrb | 07c27280 | 2017-02-07 23:48:17 | [diff] [blame] | 2348 | screen_point); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2349 | } |
| 2350 | |
| 2351 | void RenderWidget::OnDragTargetDrop(const DropData& drop_data, |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 2352 | const gfx::PointF& client_point, |
| 2353 | const gfx::PointF& screen_point, |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2354 | int key_modifiers) { |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2355 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 2356 | if (!frame_widget) |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2357 | return; |
| 2358 | |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2359 | frame_widget->DragTargetDrop(DropDataToWebDragData(drop_data), |
| 2360 | ConvertWindowPointToViewport(client_point), |
| 2361 | screen_point, key_modifiers); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 2362 | } |
| 2363 | |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 2364 | void RenderWidget::OnDragSourceEnded(const gfx::PointF& client_point, |
| 2365 | const gfx::PointF& screen_point, |
paulmeyer | 8fc8ea9 | 2016-11-15 05:12:21 | [diff] [blame] | 2366 | WebDragOperation op) { |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2367 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 2368 | if (!frame_widget) |
paulmeyer | 8fc8ea9 | 2016-11-15 05:12:21 | [diff] [blame] | 2369 | return; |
| 2370 | |
Ehsan Karamad | f3ca2a8 | 2018-01-20 01:05:25 | [diff] [blame] | 2371 | frame_widget->DragSourceEndedAt(ConvertWindowPointToViewport(client_point), |
| 2372 | screen_point, op); |
paulmeyer | 8fc8ea9 | 2016-11-15 05:12:21 | [diff] [blame] | 2373 | } |
| 2374 | |
| 2375 | void RenderWidget::OnDragSourceSystemDragEnded() { |
danakj | 503545c | 2019-01-11 19:03:09 | [diff] [blame] | 2376 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 2377 | if (!frame_widget) |
paulmeyer | 8fc8ea9 | 2016-11-15 05:12:21 | [diff] [blame] | 2378 | return; |
| 2379 | |
danakj | 503545c | 2019-01-11 19:03:09 | [diff] [blame] | 2380 | frame_widget->DragSourceSystemDragEnded(); |
paulmeyer | 8fc8ea9 | 2016-11-15 05:12:21 | [diff] [blame] | 2381 | } |
| 2382 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2383 | void RenderWidget::ShowVirtualKeyboardOnElementFocus() { |
oka | a398f50b | 2017-03-21 06:30:26 | [diff] [blame] | 2384 | #if defined(OS_CHROMEOS) |
| 2385 | // On ChromeOS, virtual keyboard is triggered only when users leave the |
| 2386 | // mouse button or the finger and a text input element is focused at that |
| 2387 | // time. Focus event itself shouldn't trigger virtual keyboard. |
| 2388 | UpdateTextInputState(); |
| 2389 | #else |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 2390 | ShowVirtualKeyboard(); |
oka | a398f50b | 2017-03-21 06:30:26 | [diff] [blame] | 2391 | #endif |
boliu | 7b2be2f | 2016-11-04 04:58:31 | [diff] [blame] | 2392 | |
| 2393 | // TODO(rouslan): Fix ChromeOS and Windows 8 behavior of autofill popup with |
| 2394 | // virtual keyboard. |
| 2395 | #if !defined(OS_ANDROID) |
| 2396 | FocusChangeComplete(); |
| 2397 | #endif |
[email protected] | 0d1ebed1 | 2013-08-05 22:01:13 | [diff] [blame] | 2398 | } |
| 2399 | |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 2400 | ui::TextInputType RenderWidget::GetTextInputType() { |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 2401 | #if BUILDFLAG(ENABLE_PLUGINS) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2402 | if (auto* plugin = GetFocusedPepperPluginInsideWidget()) |
| 2403 | return plugin->text_input_type(); |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2404 | #endif |
ekaramad | 5aff194 | 2017-01-06 01:26:35 | [diff] [blame] | 2405 | if (auto* controller = GetInputMethodController()) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2406 | return ConvertWebTextInputType(controller->TextInputType()); |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 2407 | return ui::TEXT_INPUT_TYPE_NONE; |
| 2408 | } |
| 2409 | |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 2410 | void RenderWidget::UpdateCompositionInfo(bool immediate_request) { |
| 2411 | if (!monitor_composition_info_ && !immediate_request) |
| 2412 | return; // Do not calculate composition info if not requested. |
nona | dac0c7a | 2016-08-01 02:30:59 | [diff] [blame] | 2413 | |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 2414 | TRACE_EVENT0("renderer", "RenderWidget::UpdateCompositionInfo"); |
| 2415 | gfx::Range range; |
| 2416 | std::vector<gfx::Rect> character_bounds; |
| 2417 | |
| 2418 | if (GetTextInputType() == ui::TEXT_INPUT_TYPE_NONE) { |
| 2419 | // Composition information is only available on editable node. |
| 2420 | range = gfx::Range::InvalidRange(); |
| 2421 | } else { |
| 2422 | GetCompositionRange(&range); |
| 2423 | GetCompositionCharacterBounds(&character_bounds); |
| 2424 | } |
| 2425 | |
| 2426 | if (!immediate_request && |
| 2427 | !ShouldUpdateCompositionInfo(range, character_bounds)) { |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 2428 | return; |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 2429 | } |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 2430 | composition_character_bounds_ = character_bounds; |
| 2431 | composition_range_ = range; |
Dave Tapuska | 04bc5ee9 | 2018-04-17 19:03:31 | [diff] [blame] | 2432 | if (mojom::WidgetInputHandlerHost* host = |
| 2433 | widget_input_handler_manager_->GetWidgetInputHandlerHost()) { |
| 2434 | host->ImeCompositionRangeChanged(composition_range_, |
| 2435 | composition_character_bounds_); |
Dave Tapuska | 139a72f | 2017-09-06 21:57:03 | [diff] [blame] | 2436 | } |
fsamuel | 72464894f | 2015-12-15 06:59:31 | [diff] [blame] | 2437 | } |
| 2438 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2439 | void RenderWidget::ConvertViewportToWindow(blink::WebRect* rect) { |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2440 | if (compositor_deps_->IsUseZoomForDSFEnabled()) { |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 2441 | float reverse = 1 / GetOriginalScreenInfo().device_scale_factor; |
oshima | d527903 | 2015-12-16 18:22:33 | [diff] [blame] | 2442 | // TODO(oshima): We may need to allow pixel precision here as the the |
oshima | f866dab | 2015-12-05 00:41:54 | [diff] [blame] | 2443 | // anchor element can be placed at half pixel. |
lfg | 15b235a3 | 2016-08-25 17:45:46 | [diff] [blame] | 2444 | gfx::Rect window_rect = |
| 2445 | gfx::ScaleToEnclosedRect(gfx::Rect(*rect), reverse); |
| 2446 | rect->x = window_rect.x(); |
| 2447 | rect->y = window_rect.y(); |
| 2448 | rect->width = window_rect.width(); |
| 2449 | rect->height = window_rect.height(); |
oshima | f866dab | 2015-12-05 00:41:54 | [diff] [blame] | 2450 | } |
| 2451 | } |
| 2452 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2453 | void RenderWidget::ConvertWindowToViewport(blink::WebFloatRect* rect) { |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2454 | if (compositor_deps_->IsUseZoomForDSFEnabled()) { |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 2455 | rect->x *= GetOriginalScreenInfo().device_scale_factor; |
| 2456 | rect->y *= GetOriginalScreenInfo().device_scale_factor; |
| 2457 | rect->width *= GetOriginalScreenInfo().device_scale_factor; |
| 2458 | rect->height *= GetOriginalScreenInfo().device_scale_factor; |
oshima | a6985b6 | 2016-01-27 08:58:30 | [diff] [blame] | 2459 | } |
| 2460 | } |
| 2461 | |
changwan | 8c34274 | 2016-02-26 00:53:39 | [diff] [blame] | 2462 | void RenderWidget::OnRequestTextInputStateUpdate() { |
Dave Tapuska | 9db8084 | 2017-07-24 17:24:26 | [diff] [blame] | 2463 | #if defined(OS_ANDROID) |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 2464 | // This task may run between the Close IPC and the task that actually closes |
| 2465 | // this class. |
| 2466 | if (closing_) |
| 2467 | return; |
changwan | 8c34274 | 2016-02-26 00:53:39 | [diff] [blame] | 2468 | DCHECK(!ime_event_guard_); |
| 2469 | UpdateSelectionBounds(); |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 2470 | UpdateTextInputStateInternal(false, true /* reply_to_request */); |
[email protected] | 105dffb4 | 2013-02-20 03:46:21 | [diff] [blame] | 2471 | #endif |
Dave Tapuska | 9db8084 | 2017-07-24 17:24:26 | [diff] [blame] | 2472 | } |
[email protected] | 105dffb4 | 2013-02-20 03:46:21 | [diff] [blame] | 2473 | |
ekaramad | c9b70a7 | 2017-03-23 16:14:23 | [diff] [blame] | 2474 | void RenderWidget::OnRequestCompositionUpdates(bool immediate_request, |
| 2475 | bool monitor_updates) { |
| 2476 | monitor_composition_info_ = monitor_updates; |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 2477 | if (!immediate_request) |
| 2478 | return; |
| 2479 | UpdateCompositionInfo(true /* immediate request */); |
| 2480 | } |
| 2481 | |
[email protected] | fcdc564 | 2014-05-09 14:32:24 | [diff] [blame] | 2482 | void RenderWidget::OnOrientationChange() { |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 2483 | if (auto* frame_widget = GetFrameWidget()) { |
Alex Moshchuk | 0b409c4 | 2017-09-13 02:09:00 | [diff] [blame] | 2484 | // LocalRoot() might return null for provisional main frames. In this case, |
| 2485 | // the frame hasn't committed a navigation and is not swapped into the tree |
| 2486 | // yet, so it doesn't make sense to send orientation change events to it. |
| 2487 | // |
| 2488 | // TODO(https://crbug.com/578349): This check should be cleaned up |
| 2489 | // once provisional frames are gone. |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 2490 | if (frame_widget->LocalRoot()) |
| 2491 | frame_widget->LocalRoot()->SendOrientationChangeEvent(); |
lfg | 8d649cc | 2017-04-28 18:04:30 | [diff] [blame] | 2492 | } |
[email protected] | fcdc564 | 2014-05-09 14:32:24 | [diff] [blame] | 2493 | } |
| 2494 | |
[email protected] | bee16aab | 2009-08-26 15:55:03 | [diff] [blame] | 2495 | void RenderWidget::SetHidden(bool hidden) { |
danakj | 14e00a832 | 2019-02-07 17:12:06 | [diff] [blame] | 2496 | // A frozen main frame widget does not become shown or hidden, since it has |
| 2497 | // no frame associated with it. It must be thawed before changing visibility. |
| 2498 | DCHECK(!is_frozen_); |
| 2499 | |
[email protected] | bee16aab | 2009-08-26 15:55:03 | [diff] [blame] | 2500 | if (is_hidden_ == hidden) |
| 2501 | return; |
| 2502 | |
jdduke | 8fac9d10 | 2014-12-20 02:40:13 | [diff] [blame] | 2503 | // The status has changed. Tell the RenderThread about it and ensure |
| 2504 | // throttled acks are released in case frame production ceases. |
[email protected] | bee16aab | 2009-08-26 15:55:03 | [diff] [blame] | 2505 | is_hidden_ = hidden; |
jdduke | 8fac9d10 | 2014-12-20 02:40:13 | [diff] [blame] | 2506 | |
Scott Violet | e3b1a3cb | 2019-05-02 16:51:52 | [diff] [blame] | 2507 | if (is_hidden_) |
Aditya Keerthi | c0d45b4 | 2019-02-25 18:53:00 | [diff] [blame] | 2508 | first_update_visual_state_after_hidden_ = true; |
alexclarke | 7fa9394 | 2015-10-21 15:37:11 | [diff] [blame] | 2509 | |
| 2510 | if (render_widget_scheduling_state_) |
| 2511 | render_widget_scheduling_state_->SetHidden(hidden); |
danakj | 1b35e9d | 2018-11-07 19:09:28 | [diff] [blame] | 2512 | |
David Bokan | f92eaf2 | 2019-03-01 01:54:51 | [diff] [blame] | 2513 | // If the renderer was hidden, resolve any pending synthetic gestures so they |
| 2514 | // aren't blocked waiting for a compositor frame to be generated. |
| 2515 | if (is_hidden_) |
| 2516 | widget_input_handler_manager_->InvokeInputProcessedCallback(); |
| 2517 | |
danakj | 14e00a832 | 2019-02-07 17:12:06 | [diff] [blame] | 2518 | StartStopCompositor(); |
[email protected] | bee16aab | 2009-08-26 15:55:03 | [diff] [blame] | 2519 | } |
| 2520 | |
danakj | f928477 | 2019-01-23 18:29:14 | [diff] [blame] | 2521 | void RenderWidget::SetIsFullscreen(bool fullscreen) { |
| 2522 | if (fullscreen == is_fullscreen_granted_) |
[email protected] | 2b624c56 | 2011-10-27 22:58:26 | [diff] [blame] | 2523 | return; |
danakj | f928477 | 2019-01-23 18:29:14 | [diff] [blame] | 2524 | is_fullscreen_granted_ = fullscreen; |
mikhail.pozdnyakov | f2c902a | 2015-04-14 08:09:12 | [diff] [blame] | 2525 | if (is_fullscreen_granted_) { |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2526 | GetWebWidget()->DidEnterFullscreen(); |
[email protected] | 2b624c56 | 2011-10-27 22:58:26 | [diff] [blame] | 2527 | } else { |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2528 | GetWebWidget()->DidExitFullscreen(); |
[email protected] | 2b624c56 | 2011-10-27 22:58:26 | [diff] [blame] | 2529 | } |
[email protected] | 2b624c56 | 2011-10-27 22:58:26 | [diff] [blame] | 2530 | } |
| 2531 | |
changwan | f2a707b | 2015-10-30 08:22:16 | [diff] [blame] | 2532 | void RenderWidget::OnImeEventGuardStart(ImeEventGuard* guard) { |
| 2533 | if (!ime_event_guard_) |
| 2534 | ime_event_guard_ = guard; |
[email protected] | 66fca5bc | 2013-05-23 06:58:29 | [diff] [blame] | 2535 | } |
| 2536 | |
changwan | f2a707b | 2015-10-30 08:22:16 | [diff] [blame] | 2537 | void RenderWidget::OnImeEventGuardFinish(ImeEventGuard* guard) { |
Jeremy Roman | 0b261f4 | 2018-08-28 15:36:01 | [diff] [blame] | 2538 | if (ime_event_guard_ != guard) |
changwan | f2a707b | 2015-10-30 08:22:16 | [diff] [blame] | 2539 | return; |
changwan | f2a707b | 2015-10-30 08:22:16 | [diff] [blame] | 2540 | ime_event_guard_ = nullptr; |
| 2541 | |
[email protected] | 66fca5bc | 2013-05-23 06:58:29 | [diff] [blame] | 2542 | // While handling an ime event, text input state and selection bounds updates |
| 2543 | // are ignored. These must explicitly be updated once finished handling the |
| 2544 | // ime event. |
| 2545 | UpdateSelectionBounds(); |
[email protected] | cb9e263 | 2013-06-18 11:26:47 | [diff] [blame] | 2546 | #if defined(OS_ANDROID) |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 2547 | if (guard->show_virtual_keyboard()) |
| 2548 | ShowVirtualKeyboard(); |
| 2549 | else |
| 2550 | UpdateTextInputState(); |
[email protected] | cb9e263 | 2013-06-18 11:26:47 | [diff] [blame] | 2551 | #endif |
[email protected] | 66fca5bc | 2013-05-23 06:58:29 | [diff] [blame] | 2552 | } |
| 2553 | |
[email protected] | 7c8873e | 2013-02-05 08:03:01 | [diff] [blame] | 2554 | void RenderWidget::GetSelectionBounds(gfx::Rect* focus, gfx::Rect* anchor) { |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 2555 | #if BUILDFLAG(ENABLE_PLUGINS) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2556 | if (auto* plugin = GetFocusedPepperPluginInsideWidget()) { |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2557 | // TODO(kinaba) http://crbug.com/101101 |
| 2558 | // Current Pepper IME API does not handle selection bounds. So we simply |
| 2559 | // use the caret position as an empty range for now. It will be updated |
| 2560 | // after Pepper API equips features related to surrounding text retrieval. |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2561 | blink::WebRect caret(plugin->GetCaretBounds()); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2562 | ConvertViewportToWindow(&caret); |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2563 | *focus = caret; |
| 2564 | *anchor = caret; |
| 2565 | return; |
| 2566 | } |
| 2567 | #endif |
[email protected] | 7c8873e | 2013-02-05 08:03:01 | [diff] [blame] | 2568 | WebRect focus_webrect; |
| 2569 | WebRect anchor_webrect; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2570 | GetWebWidget()->SelectionBounds(focus_webrect, anchor_webrect); |
| 2571 | ConvertViewportToWindow(&focus_webrect); |
| 2572 | ConvertViewportToWindow(&anchor_webrect); |
oshima | 33ec97cd | 2015-12-14 19:40:24 | [diff] [blame] | 2573 | *focus = focus_webrect; |
| 2574 | *anchor = anchor_webrect; |
[email protected] | 73bf9581 | 2011-10-12 11:38:32 | [diff] [blame] | 2575 | } |
| 2576 | |
[email protected] | e99ef6f | 2011-10-16 01:13:00 | [diff] [blame] | 2577 | void RenderWidget::UpdateSelectionBounds() { |
jdduke | 1aebad8e | 2015-07-22 23:25:08 | [diff] [blame] | 2578 | TRACE_EVENT0("renderer", "RenderWidget::UpdateSelectionBounds"); |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 2579 | if (!GetWebWidget()) |
[email protected] | e99ef6f | 2011-10-16 01:13:00 | [diff] [blame] | 2580 | return; |
changwan | f2a707b | 2015-10-30 08:22:16 | [diff] [blame] | 2581 | if (ime_event_guard_) |
[email protected] | 66fca5bc | 2013-05-23 06:58:29 | [diff] [blame] | 2582 | return; |
[email protected] | e99ef6f | 2011-10-16 01:13:00 | [diff] [blame] | 2583 | |
mohsen | b0eeba7 | 2015-08-09 06:20:08 | [diff] [blame] | 2584 | #if defined(USE_AURA) |
| 2585 | // TODO(mohsen): For now, always send explicit selection IPC notifications for |
| 2586 | // Aura beucause composited selection updates are not working for webview tags |
| 2587 | // which regresses IME inside webview. Remove this when composited selection |
| 2588 | // updates are fixed for webviews. See, http://crbug.com/510568. |
| 2589 | bool send_ipc = true; |
| 2590 | #else |
jdduke | acf809e | 2014-09-23 20:38:38 | [diff] [blame] | 2591 | // With composited selection updates, the selection bounds will be reported |
| 2592 | // directly by the compositor, in which case explicit IPC selection |
| 2593 | // notifications should be suppressed. |
mohsen | b0eeba7 | 2015-08-09 06:20:08 | [diff] [blame] | 2594 | bool send_ipc = |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2595 | !blink::WebRuntimeFeatures::IsCompositedSelectionUpdateEnabled(); |
mohsen | b0eeba7 | 2015-08-09 06:20:08 | [diff] [blame] | 2596 | #endif |
| 2597 | if (send_ipc) { |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2598 | WidgetHostMsg_SelectionBounds_Params params; |
EhsanK | 955ba58 | 2017-11-30 21:14:40 | [diff] [blame] | 2599 | params.is_anchor_first = false; |
jdduke | acf809e | 2014-09-23 20:38:38 | [diff] [blame] | 2600 | GetSelectionBounds(¶ms.anchor_rect, ¶ms.focus_rect); |
| 2601 | if (selection_anchor_rect_ != params.anchor_rect || |
| 2602 | selection_focus_rect_ != params.focus_rect) { |
| 2603 | selection_anchor_rect_ = params.anchor_rect; |
| 2604 | selection_focus_rect_ = params.focus_rect; |
EhsanK | 955ba58 | 2017-11-30 21:14:40 | [diff] [blame] | 2605 | if (auto* focused_frame = GetFocusedWebLocalFrameInWidget()) { |
| 2606 | focused_frame->SelectionTextDirection(params.focus_dir, |
| 2607 | params.anchor_dir); |
| 2608 | params.is_anchor_first = focused_frame->IsSelectionAnchorFirst(); |
| 2609 | } |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2610 | Send(new WidgetHostMsg_SelectionBoundsChanged(routing_id_, params)); |
jdduke | acf809e | 2014-09-23 20:38:38 | [diff] [blame] | 2611 | } |
[email protected] | 58b48a0d | 2012-06-13 07:01:35 | [diff] [blame] | 2612 | } |
jdduke | acf809e | 2014-09-23 20:38:38 | [diff] [blame] | 2613 | |
nona | fa29179 | 2016-08-10 02:36:18 | [diff] [blame] | 2614 | UpdateCompositionInfo(false /* not an immediate request */); |
[email protected] | e99ef6f | 2011-10-16 01:13:00 | [diff] [blame] | 2615 | } |
| 2616 | |
lfg | b00fcad | 2016-07-14 14:16:33 | [diff] [blame] | 2617 | void RenderWidget::DidAutoResize(const gfx::Size& new_size) { |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 2618 | // Blink can continue running and do a layout/resize between the Close IPC |
| 2619 | // and the task that actually closes this class. |
| 2620 | if (closing_) |
| 2621 | return; |
| 2622 | |
lfg | b00fcad | 2016-07-14 14:16:33 | [diff] [blame] | 2623 | WebRect new_size_in_window(0, 0, new_size.width(), new_size.height()); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2624 | ConvertViewportToWindow(&new_size_in_window); |
lfg | b00fcad | 2016-07-14 14:16:33 | [diff] [blame] | 2625 | if (size_.width() != new_size_in_window.width || |
| 2626 | size_.height() != new_size_in_window.height) { |
| 2627 | size_ = gfx::Size(new_size_in_window.width, new_size_in_window.height); |
| 2628 | |
danakj | 7602f4f | 2019-01-31 18:03:23 | [diff] [blame] | 2629 | if (synchronous_resize_mode_for_testing_) { |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2630 | gfx::Rect new_pos(WindowRect().x, WindowRect().y, size_.width(), |
| 2631 | size_.height()); |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2632 | widget_screen_rect_ = new_pos; |
lfg | b00fcad | 2016-07-14 14:16:33 | [diff] [blame] | 2633 | window_screen_rect_ = new_pos; |
| 2634 | } |
| 2635 | |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 2636 | // TODO(ccameron): Note that this destroys any information differentiating |
danakj | 9c4e7b81 | 2019-02-19 22:04:27 | [diff] [blame] | 2637 | // |size_| from the compositor's viewport size. Also note that the |
Christopher Cameron | aad15a0d | 2018-03-09 03:47:33 | [diff] [blame] | 2638 | // calculation of |new_compositor_viewport_pixel_size| does not appear to |
| 2639 | // take into account device emulation. |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 2640 | layer_tree_view_->RequestNewLocalSurfaceId(); |
Christopher Cameron | aad15a0d | 2018-03-09 03:47:33 | [diff] [blame] | 2641 | gfx::Size new_compositor_viewport_pixel_size = |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 2642 | gfx::ScaleToCeiledSize(size_, GetWebScreenInfo().device_scale_factor); |
Fady Samuel | 1c1ad369 | 2018-11-06 23:28:40 | [diff] [blame] | 2643 | UpdateSurfaceAndScreenInfo(local_surface_id_allocation_from_parent_, |
| 2644 | new_compositor_viewport_pixel_size, |
| 2645 | screen_info_); |
lfg | b00fcad | 2016-07-14 14:16:33 | [diff] [blame] | 2646 | } |
| 2647 | } |
| 2648 | |
[email protected] | 58b48a0d | 2012-06-13 07:01:35 | [diff] [blame] | 2649 | void RenderWidget::GetCompositionCharacterBounds( |
| 2650 | std::vector<gfx::Rect>* bounds) { |
| 2651 | DCHECK(bounds); |
| 2652 | bounds->clear(); |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2653 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 2654 | #if BUILDFLAG(ENABLE_PLUGINS) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2655 | if (GetFocusedPepperPluginInsideWidget()) |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2656 | return; |
| 2657 | #endif |
| 2658 | |
Ehsan Karamad | 4975af6d | 2018-02-09 16:58:16 | [diff] [blame] | 2659 | blink::WebInputMethodController* controller = GetInputMethodController(); |
| 2660 | if (!controller) |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2661 | return; |
| 2662 | blink::WebVector<blink::WebRect> bounds_from_blink; |
Ehsan Karamad | 4975af6d | 2018-02-09 16:58:16 | [diff] [blame] | 2663 | if (!controller->GetCompositionCharacterBounds(bounds_from_blink)) |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2664 | return; |
| 2665 | |
| 2666 | for (size_t i = 0; i < bounds_from_blink.size(); ++i) { |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2667 | ConvertViewportToWindow(&bounds_from_blink[i]); |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2668 | bounds->push_back(bounds_from_blink[i]); |
| 2669 | } |
[email protected] | 58b48a0d | 2012-06-13 07:01:35 | [diff] [blame] | 2670 | } |
| 2671 | |
[email protected] | db4fc1e | 2013-09-06 20:01:51 | [diff] [blame] | 2672 | void RenderWidget::GetCompositionRange(gfx::Range* range) { |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 2673 | #if BUILDFLAG(ENABLE_PLUGINS) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2674 | if (GetFocusedPepperPluginInsideWidget()) |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2675 | return; |
| 2676 | #endif |
EhsanK | cdee7b7 | 2017-11-08 21:30:09 | [diff] [blame] | 2677 | blink::WebInputMethodController* controller = GetInputMethodController(); |
| 2678 | WebRange web_range = controller ? controller->CompositionRange() : WebRange(); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2679 | if (web_range.IsNull()) { |
nona | 2363a3d | 2016-11-09 03:26:21 | [diff] [blame] | 2680 | *range = gfx::Range::InvalidRange(); |
| 2681 | return; |
[email protected] | 88dbe32f | 2013-06-20 23:31:36 | [diff] [blame] | 2682 | } |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2683 | range->set_start(web_range.StartOffset()); |
| 2684 | range->set_end(web_range.EndOffset()); |
[email protected] | 88dbe32f | 2013-06-20 23:31:36 | [diff] [blame] | 2685 | } |
| 2686 | |
[email protected] | 501ea13d | 2013-07-09 17:03:29 | [diff] [blame] | 2687 | bool RenderWidget::ShouldUpdateCompositionInfo( |
[email protected] | db4fc1e | 2013-09-06 20:01:51 | [diff] [blame] | 2688 | const gfx::Range& range, |
[email protected] | 501ea13d | 2013-07-09 17:03:29 | [diff] [blame] | 2689 | const std::vector<gfx::Rect>& bounds) { |
changwan | 2418e1b | 2016-12-12 12:43:08 | [diff] [blame] | 2690 | if (!range.IsValid()) |
| 2691 | return false; |
[email protected] | 501ea13d | 2013-07-09 17:03:29 | [diff] [blame] | 2692 | if (composition_range_ != range) |
| 2693 | return true; |
| 2694 | if (bounds.size() != composition_character_bounds_.size()) |
| 2695 | return true; |
| 2696 | for (size_t i = 0; i < bounds.size(); ++i) { |
| 2697 | if (bounds[i] != composition_character_bounds_[i]) |
| 2698 | return true; |
| 2699 | } |
| 2700 | return false; |
| 2701 | } |
[email protected] | 501ea13d | 2013-07-09 17:03:29 | [diff] [blame] | 2702 | |
[email protected] | ad26ef4 | 2011-06-17 07:59:45 | [diff] [blame] | 2703 | bool RenderWidget::CanComposeInline() { |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 2704 | #if BUILDFLAG(ENABLE_PLUGINS) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 2705 | if (auto* plugin = GetFocusedPepperPluginInsideWidget()) |
| 2706 | return plugin->IsPluginAcceptingCompositionEvents(); |
ekaramad | 2a46d63 | 2016-07-19 13:33:09 | [diff] [blame] | 2707 | #endif |
[email protected] | ad26ef4 | 2011-06-17 07:59:45 | [diff] [blame] | 2708 | return true; |
[email protected] | 56ea1a6 | 2011-05-30 07:05:57 | [diff] [blame] | 2709 | } |
| 2710 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2711 | void RenderWidget::DidHandleGestureEvent(const WebGestureEvent& event, |
| 2712 | bool event_cancelled) { |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2713 | if (event_cancelled) { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 2714 | // The delegate() doesn't need to hear about cancelled events. |
[email protected] | c68c3e4e | 2013-01-24 00:36:56 | [diff] [blame] | 2715 | return; |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2716 | } |
| 2717 | |
| 2718 | #if defined(OS_ANDROID) || defined(USE_AURA) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2719 | if (event.GetType() == WebInputEvent::kGestureTap) { |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 2720 | ShowVirtualKeyboard(); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2721 | } else if (event.GetType() == WebInputEvent::kGestureLongPress) { |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 2722 | DCHECK(GetWebWidget()); |
ekaramad | 5aff194 | 2017-01-06 01:26:35 | [diff] [blame] | 2723 | blink::WebInputMethodController* controller = GetInputMethodController(); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2724 | if (!controller || controller->TextInputInfo().value.IsEmpty()) |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 2725 | UpdateTextInputState(); |
[email protected] | 07c70d2 | 2014-08-21 08:33:46 | [diff] [blame] | 2726 | else |
changwan | 75e3b207 | 2017-01-16 02:55:00 | [diff] [blame] | 2727 | ShowVirtualKeyboard(); |
[email protected] | c68c3e4e | 2013-01-24 00:36:56 | [diff] [blame] | 2728 | } |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 2729 | // TODO(ananta): Piggyback off existing IPCs to communicate this information, |
| 2730 | // crbug/420130. |
| 2731 | #if defined(OS_WIN) |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2732 | if (event.GetType() == blink::WebGestureEvent::kGestureTap) { |
| 2733 | // TODO(estade): hit test the event against focused node to make sure |
| 2734 | // the tap actually hit the focused node. |
| 2735 | blink::WebInputMethodController* controller = GetInputMethodController(); |
| 2736 | blink::WebTextInputType text_input_type = |
| 2737 | controller ? controller->TextInputType() : blink::kWebTextInputTypeNone; |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 2738 | |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 2739 | Send(new WidgetHostMsg_FocusedNodeTouched( |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2740 | routing_id_, text_input_type != blink::kWebTextInputTypeNone)); |
| 2741 | } |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 2742 | #endif |
[email protected] | c68c3e4e | 2013-01-24 00:36:56 | [diff] [blame] | 2743 | #endif |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 2744 | |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 2745 | // The delegate() gets to respond to handling gestures last. |
| 2746 | if (delegate()) |
| 2747 | delegate()->DidHandleGestureEventForWidget(event); |
[email protected] | c68c3e4e | 2013-01-24 00:36:56 | [diff] [blame] | 2748 | } |
| 2749 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2750 | void RenderWidget::DidOverscroll( |
danakj | 1b05cf2 | 2019-04-12 23:47:05 | [diff] [blame] | 2751 | const blink::WebFloatSize& overscroll_delta, |
| 2752 | const blink::WebFloatSize& accumulated_overscroll, |
sataya.m | 582c9ce | 2015-06-09 08:03:42 | [diff] [blame] | 2753 | const blink::WebFloatPoint& position, |
danakj | 1b05cf2 | 2019-04-12 23:47:05 | [diff] [blame] | 2754 | const blink::WebFloatSize& velocity) { |
bokan | 731ec38 | 2016-04-07 03:16:48 | [diff] [blame] | 2755 | #if defined(OS_MACOSX) |
| 2756 | // On OSX the user can disable the elastic overscroll effect. If that's the |
| 2757 | // case, don't forward the overscroll notification. |
| 2758 | DCHECK(compositor_deps()); |
| 2759 | if (!compositor_deps()->IsElasticOverscrollEnabled()) |
| 2760 | return; |
| 2761 | #endif |
danakj | 1b05cf2 | 2019-04-12 23:47:05 | [diff] [blame] | 2762 | input_handler_->DidOverscrollFromBlink( |
| 2763 | overscroll_delta, accumulated_overscroll, position, velocity, |
| 2764 | layer_tree_view_->layer_tree_host()->overscroll_behavior()); |
| 2765 | } |
| 2766 | |
danakj | 1b05cf2 | 2019-04-12 23:47:05 | [diff] [blame] | 2767 | void RenderWidget::SetOverscrollBehavior( |
| 2768 | const cc::OverscrollBehavior& behavior) { |
| 2769 | layer_tree_view_->layer_tree_host()->SetOverscrollBehavior(behavior); |
sataya.m | 582c9ce | 2015-06-09 08:03:42 | [diff] [blame] | 2770 | } |
| 2771 | |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2772 | // static |
| 2773 | cc::LayerTreeSettings RenderWidget::GenerateLayerTreeSettings( |
| 2774 | CompositorDependencies* compositor_deps, |
| 2775 | bool is_for_subframe, |
| 2776 | const gfx::Size& initial_screen_size, |
| 2777 | float initial_device_scale_factor) { |
| 2778 | const bool is_threaded = |
| 2779 | !!compositor_deps->GetCompositorImplThreadTaskRunner(); |
| 2780 | |
| 2781 | const base::CommandLine& cmd = *base::CommandLine::ForCurrentProcess(); |
| 2782 | cc::LayerTreeSettings settings; |
| 2783 | |
Rahul Arakeri | e510b8c | 2019-04-01 21:17:54 | [diff] [blame] | 2784 | settings.compositor_threaded_scrollbar_scrolling = |
| 2785 | base::FeatureList::IsEnabled( |
| 2786 | features::kCompositorThreadedScrollbarScrolling); |
| 2787 | |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2788 | settings.resource_settings.use_r16_texture = |
| 2789 | base::FeatureList::IsEnabled(media::kUseR16Texture); |
| 2790 | |
| 2791 | settings.commit_to_active_tree = !is_threaded; |
| 2792 | settings.is_layer_tree_for_subframe = is_for_subframe; |
| 2793 | |
| 2794 | // For web contents, layer transforms should scale up the contents of layers |
| 2795 | // to keep content always crisp when possible. |
| 2796 | settings.layer_transforms_should_scale_layer_contents = true; |
| 2797 | |
| 2798 | settings.main_frame_before_activation_enabled = |
| 2799 | cmd.HasSwitch(cc::switches::kEnableMainFrameBeforeActivation); |
| 2800 | |
| 2801 | // Checkerimaging is not supported for synchronous single-threaded mode, which |
| 2802 | // is what the renderer uses if its not threaded. |
| 2803 | settings.enable_checker_imaging = |
| 2804 | !cmd.HasSwitch(cc::switches::kDisableCheckerImaging) && is_threaded; |
| 2805 | |
| 2806 | #if defined(OS_ANDROID) |
| 2807 | // We can use a more aggressive limit on Android since decodes tend to take |
| 2808 | // longer on these devices. |
| 2809 | settings.min_image_bytes_to_checker = 512 * 1024; // 512kB |
| 2810 | |
| 2811 | // Re-rasterization of checker-imaged content with software raster can be too |
| 2812 | // costly on Android. |
| 2813 | settings.only_checker_images_with_gpu_raster = true; |
| 2814 | #endif |
| 2815 | |
| 2816 | auto switch_value_as_int = [](const base::CommandLine& command_line, |
| 2817 | const std::string& switch_string, int min_value, |
| 2818 | int max_value, int* result) { |
| 2819 | std::string string_value = command_line.GetSwitchValueASCII(switch_string); |
| 2820 | int int_value; |
| 2821 | if (base::StringToInt(string_value, &int_value) && int_value >= min_value && |
| 2822 | int_value <= max_value) { |
| 2823 | *result = int_value; |
| 2824 | return true; |
| 2825 | } else { |
danakj | da15621e | 2019-04-05 20:34:43 | [diff] [blame] | 2826 | DLOG(WARNING) << "Failed to parse switch " << switch_string << ": " |
| 2827 | << string_value; |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2828 | return false; |
| 2829 | } |
| 2830 | }; |
| 2831 | |
| 2832 | int default_tile_size = 256; |
| 2833 | #if defined(OS_ANDROID) |
| 2834 | const gfx::Size screen_size = |
| 2835 | gfx::ScaleToFlooredSize(initial_screen_size, initial_device_scale_factor); |
| 2836 | int display_width = screen_size.width(); |
| 2837 | int display_height = screen_size.height(); |
| 2838 | int numTiles = (display_width * display_height) / (256 * 256); |
| 2839 | if (numTiles > 16) |
| 2840 | default_tile_size = 384; |
| 2841 | if (numTiles >= 40) |
| 2842 | default_tile_size = 512; |
| 2843 | |
| 2844 | // Adjust for some resolutions that barely straddle an extra |
| 2845 | // tile when in portrait mode. This helps worst case scroll/raster |
| 2846 | // by not needing a full extra tile for each row. |
| 2847 | constexpr int tolerance = 10; // To avoid rounding errors. |
| 2848 | int portrait_width = std::min(display_width, display_height); |
| 2849 | if (default_tile_size == 256 && std::abs(portrait_width - 768) < tolerance) |
| 2850 | default_tile_size += 32; |
| 2851 | if (default_tile_size == 384 && std::abs(portrait_width - 1200) < tolerance) |
| 2852 | default_tile_size += 32; |
| 2853 | #elif defined(OS_CHROMEOS) || defined(OS_MACOSX) |
| 2854 | // Use 512 for high DPI (dsf=2.0f) devices. |
| 2855 | if (initial_device_scale_factor >= 2.0f) |
| 2856 | default_tile_size = 512; |
| 2857 | #endif |
| 2858 | |
| 2859 | // TODO(danakj): This should not be a setting O_O; it should change when the |
| 2860 | // device scale factor on LayerTreeHost changes. |
| 2861 | settings.default_tile_size = gfx::Size(default_tile_size, default_tile_size); |
| 2862 | if (cmd.HasSwitch(switches::kDefaultTileWidth)) { |
| 2863 | int tile_width = 0; |
| 2864 | switch_value_as_int(cmd, switches::kDefaultTileWidth, 1, |
| 2865 | std::numeric_limits<int>::max(), &tile_width); |
| 2866 | settings.default_tile_size.set_width(tile_width); |
| 2867 | } |
| 2868 | if (cmd.HasSwitch(switches::kDefaultTileHeight)) { |
| 2869 | int tile_height = 0; |
| 2870 | switch_value_as_int(cmd, switches::kDefaultTileHeight, 1, |
| 2871 | std::numeric_limits<int>::max(), &tile_height); |
| 2872 | settings.default_tile_size.set_height(tile_height); |
| 2873 | } |
| 2874 | |
| 2875 | int max_untiled_layer_width = settings.max_untiled_layer_size.width(); |
| 2876 | if (cmd.HasSwitch(switches::kMaxUntiledLayerWidth)) { |
| 2877 | switch_value_as_int(cmd, switches::kMaxUntiledLayerWidth, 1, |
| 2878 | std::numeric_limits<int>::max(), |
| 2879 | &max_untiled_layer_width); |
| 2880 | } |
| 2881 | int max_untiled_layer_height = settings.max_untiled_layer_size.height(); |
| 2882 | if (cmd.HasSwitch(switches::kMaxUntiledLayerHeight)) { |
| 2883 | switch_value_as_int(cmd, switches::kMaxUntiledLayerHeight, 1, |
| 2884 | std::numeric_limits<int>::max(), |
| 2885 | &max_untiled_layer_height); |
| 2886 | } |
| 2887 | |
| 2888 | settings.max_untiled_layer_size = |
| 2889 | gfx::Size(max_untiled_layer_width, max_untiled_layer_height); |
| 2890 | |
| 2891 | settings.gpu_rasterization_msaa_sample_count = |
| 2892 | compositor_deps->GetGpuRasterizationMSAASampleCount(); |
| 2893 | settings.gpu_rasterization_forced = |
| 2894 | compositor_deps->IsGpuRasterizationForced(); |
| 2895 | |
| 2896 | settings.can_use_lcd_text = compositor_deps->IsLcdTextEnabled(); |
| 2897 | settings.use_zero_copy = compositor_deps->IsZeroCopyEnabled(); |
| 2898 | settings.use_partial_raster = compositor_deps->IsPartialRasterEnabled(); |
| 2899 | settings.enable_elastic_overscroll = |
| 2900 | compositor_deps->IsElasticOverscrollEnabled(); |
| 2901 | settings.resource_settings.use_gpu_memory_buffer_resources = |
| 2902 | compositor_deps->IsGpuMemoryBufferCompositorResourcesEnabled(); |
| 2903 | settings.use_painted_device_scale_factor = |
| 2904 | compositor_deps->IsUseZoomForDSFEnabled(); |
| 2905 | |
| 2906 | // Build LayerTreeSettings from command line args. |
| 2907 | if (cmd.HasSwitch(cc::switches::kBrowserControlsShowThreshold)) { |
| 2908 | std::string top_threshold_str = |
| 2909 | cmd.GetSwitchValueASCII(cc::switches::kBrowserControlsShowThreshold); |
| 2910 | double show_threshold; |
| 2911 | if (base::StringToDouble(top_threshold_str, &show_threshold) && |
| 2912 | show_threshold >= 0.f && show_threshold <= 1.f) |
| 2913 | settings.top_controls_show_threshold = show_threshold; |
| 2914 | } |
| 2915 | |
| 2916 | if (cmd.HasSwitch(cc::switches::kBrowserControlsHideThreshold)) { |
| 2917 | std::string top_threshold_str = |
| 2918 | cmd.GetSwitchValueASCII(cc::switches::kBrowserControlsHideThreshold); |
| 2919 | double hide_threshold; |
| 2920 | if (base::StringToDouble(top_threshold_str, &hide_threshold) && |
| 2921 | hide_threshold >= 0.f && hide_threshold <= 1.f) |
| 2922 | settings.top_controls_hide_threshold = hide_threshold; |
| 2923 | } |
| 2924 | |
Philip Rogers | c55ab6a | 2018-12-05 17:29:19 | [diff] [blame] | 2925 | // Blink sends cc a layer list and property trees when either |
| 2926 | // BlinkGenPropertyTrees or CompositeAfterPaint are enabled. |
Philip Rogers | fc2f116 | 2018-10-17 18:28:31 | [diff] [blame] | 2927 | settings.use_layer_lists = |
| 2928 | blink::WebRuntimeFeatures::IsBlinkGenPropertyTreesEnabled() || |
Philip Rogers | c55ab6a | 2018-12-05 17:29:19 | [diff] [blame] | 2929 | blink::WebRuntimeFeatures::IsCompositeAfterPaintEnabled(); |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2930 | |
David Bokan | 163b6a7 | 2018-10-25 22:03:49 | [diff] [blame] | 2931 | // Blink currently doesn't support setting fractional scroll offsets so CC |
| 2932 | // must send integer values. We plan to eventually make Blink use fractional |
| 2933 | // offsets internally: https://crbug.com/414283. |
| 2934 | settings.commit_fractional_scroll_deltas = |
| 2935 | blink::WebRuntimeFeatures::IsFractionalScrollOffsetsEnabled(); |
| 2936 | |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2937 | // The means the renderer compositor has 2 possible modes: |
| 2938 | // - Threaded compositing with a scheduler. |
Kent Tamura | 21d1de6 | 2018-12-10 04:45:20 | [diff] [blame] | 2939 | // - Single threaded compositing without a scheduler (for web tests only). |
| 2940 | // Using the scheduler in web tests introduces additional composite steps |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2941 | // that create flakiness. |
| 2942 | settings.single_thread_proxy_scheduler = false; |
| 2943 | |
| 2944 | // These flags should be mirrored by UI versions in ui/compositor/. |
| 2945 | if (cmd.HasSwitch(cc::switches::kShowCompositedLayerBorders)) |
| 2946 | settings.initial_debug_state.show_debug_borders.set(); |
| 2947 | settings.initial_debug_state.show_layer_animation_bounds_rects = |
| 2948 | cmd.HasSwitch(cc::switches::kShowLayerAnimationBounds); |
| 2949 | settings.initial_debug_state.show_paint_rects = |
| 2950 | cmd.HasSwitch(switches::kShowPaintRects); |
rnasri | 2e62194 | 2019-05-14 21:24:25 | [diff] [blame] | 2951 | settings.initial_debug_state.show_layout_shift_regions = |
| 2952 | cmd.HasSwitch(switches::kShowLayoutShiftRegions); |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2953 | settings.initial_debug_state.show_property_changed_rects = |
| 2954 | cmd.HasSwitch(cc::switches::kShowPropertyChangedRects); |
| 2955 | settings.initial_debug_state.show_surface_damage_rects = |
| 2956 | cmd.HasSwitch(cc::switches::kShowSurfaceDamageRects); |
| 2957 | settings.initial_debug_state.show_screen_space_rects = |
| 2958 | cmd.HasSwitch(cc::switches::kShowScreenSpaceRects); |
| 2959 | |
| 2960 | settings.initial_debug_state.SetRecordRenderingStats( |
| 2961 | cmd.HasSwitch(cc::switches::kEnableGpuBenchmarking)); |
| 2962 | settings.enable_surface_synchronization = |
| 2963 | features::IsSurfaceSynchronizationEnabled(); |
| 2964 | settings.build_hit_test_data = features::IsVizHitTestingSurfaceLayerEnabled(); |
| 2965 | |
| 2966 | if (cmd.HasSwitch(cc::switches::kSlowDownRasterScaleFactor)) { |
| 2967 | const int kMinSlowDownScaleFactor = 0; |
| 2968 | const int kMaxSlowDownScaleFactor = INT_MAX; |
| 2969 | switch_value_as_int( |
| 2970 | cmd, cc::switches::kSlowDownRasterScaleFactor, kMinSlowDownScaleFactor, |
| 2971 | kMaxSlowDownScaleFactor, |
| 2972 | &settings.initial_debug_state.slow_down_raster_scale_factor); |
| 2973 | } |
| 2974 | |
| 2975 | // This is default overlay scrollbar settings for Android and DevTools mobile |
| 2976 | // emulator. Aura Overlay Scrollbar will override below. |
| 2977 | settings.scrollbar_animator = cc::LayerTreeSettings::ANDROID_OVERLAY; |
| 2978 | settings.solid_color_scrollbar_color = SkColorSetARGB(128, 128, 128, 128); |
| 2979 | settings.scrollbar_fade_delay = base::TimeDelta::FromMilliseconds(300); |
| 2980 | settings.scrollbar_fade_duration = base::TimeDelta::FromMilliseconds(300); |
| 2981 | |
Daniel Libby | 43972d8 | 2019-02-28 21:35:36 | [diff] [blame] | 2982 | if (cmd.HasSwitch(cc::switches::kCCScrollAnimationDurationForTesting)) { |
| 2983 | const int kMinScrollAnimationDuration = 0; |
| 2984 | const int kMaxScrollAnimationDuration = INT_MAX; |
| 2985 | int duration; |
| 2986 | if (switch_value_as_int(cmd, |
| 2987 | cc::switches::kCCScrollAnimationDurationForTesting, |
| 2988 | kMinScrollAnimationDuration, |
| 2989 | kMaxScrollAnimationDuration, &duration)) { |
| 2990 | settings.scroll_animation_duration_for_testing = |
| 2991 | base::TimeDelta::FromSeconds(duration); |
| 2992 | } |
| 2993 | } |
| 2994 | |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 2995 | #if defined(OS_ANDROID) |
| 2996 | bool using_synchronous_compositor = |
| 2997 | compositor_deps->UsingSynchronousCompositing(); |
| 2998 | bool using_low_memory_policy = base::SysInfo::IsLowEndDevice(); |
| 2999 | |
| 3000 | settings.use_stream_video_draw_quad = true; |
| 3001 | settings.using_synchronous_renderer_compositor = using_synchronous_compositor; |
| 3002 | if (using_synchronous_compositor) { |
| 3003 | // Android WebView uses system scrollbars, so make ours invisible. |
| 3004 | // http://crbug.com/677348: This can't be done using hide_scrollbars |
| 3005 | // setting because supporting -webkit custom scrollbars is still desired |
| 3006 | // on sublayers. |
| 3007 | settings.scrollbar_animator = cc::LayerTreeSettings::NO_ANIMATOR; |
| 3008 | settings.solid_color_scrollbar_color = SK_ColorTRANSPARENT; |
| 3009 | |
| 3010 | settings.enable_early_damage_check = |
| 3011 | cmd.HasSwitch(cc::switches::kCheckDamageEarly); |
| 3012 | } |
| 3013 | // Android WebView handles root layer flings itself. |
| 3014 | settings.ignore_root_layer_flings = using_synchronous_compositor; |
| 3015 | // Memory policy on Android WebView does not depend on whether device is |
| 3016 | // low end, so always use default policy. |
| 3017 | if (using_low_memory_policy && !using_synchronous_compositor) { |
| 3018 | // On low-end we want to be very carefull about killing other |
| 3019 | // apps. So initially we use 50% more memory to avoid flickering |
| 3020 | // or raster-on-demand. |
| 3021 | settings.max_memory_for_prepaint_percentage = 67; |
| 3022 | } else { |
| 3023 | // On other devices we have increased memory excessively to avoid |
| 3024 | // raster-on-demand already, so now we reserve 50% _only_ to avoid |
| 3025 | // raster-on-demand, and use 50% of the memory otherwise. |
| 3026 | settings.max_memory_for_prepaint_percentage = 50; |
| 3027 | } |
| 3028 | |
| 3029 | // TODO(danakj): Only do this on low end devices. |
| 3030 | settings.create_low_res_tiling = true; |
| 3031 | |
| 3032 | #else // defined(OS_ANDROID) |
| 3033 | bool using_synchronous_compositor = false; // Only for Android WebView. |
| 3034 | // On desktop, we never use the low memory policy unless we are simulating |
| 3035 | // low-end mode via a switch. |
| 3036 | bool using_low_memory_policy = |
| 3037 | cmd.HasSwitch(switches::kEnableLowEndDeviceMode); |
| 3038 | |
| 3039 | if (ui::IsOverlayScrollbarEnabled()) { |
| 3040 | settings.scrollbar_animator = cc::LayerTreeSettings::AURA_OVERLAY; |
| 3041 | settings.scrollbar_fade_delay = ui::kOverlayScrollbarFadeDelay; |
| 3042 | settings.scrollbar_fade_duration = ui::kOverlayScrollbarFadeDuration; |
| 3043 | settings.scrollbar_thinning_duration = |
| 3044 | ui::kOverlayScrollbarThinningDuration; |
| 3045 | settings.scrollbar_flash_after_any_scroll_update = |
| 3046 | ui::OverlayScrollbarFlashAfterAnyScrollUpdate(); |
| 3047 | settings.scrollbar_flash_when_mouse_enter = |
| 3048 | ui::OverlayScrollbarFlashWhenMouseEnter(); |
| 3049 | } |
| 3050 | |
| 3051 | // On desktop, if there's over 4GB of memory on the machine, increase the |
| 3052 | // working set size to 256MB for both gpu and software. |
| 3053 | const int kImageDecodeMemoryThresholdMB = 4 * 1024; |
| 3054 | if (base::SysInfo::AmountOfPhysicalMemoryMB() >= |
| 3055 | kImageDecodeMemoryThresholdMB) { |
| 3056 | settings.decoded_image_working_set_budget_bytes = 256 * 1024 * 1024; |
| 3057 | } else { |
| 3058 | // This is the default, but recorded here as well. |
| 3059 | settings.decoded_image_working_set_budget_bytes = 128 * 1024 * 1024; |
| 3060 | } |
| 3061 | #endif // defined(OS_ANDROID) |
| 3062 | |
| 3063 | if (using_low_memory_policy) { |
| 3064 | // RGBA_4444 textures are only enabled: |
| 3065 | // - If the user hasn't explicitly disabled them |
| 3066 | // - If system ram is <= 512MB (1GB devices are sometimes low-end). |
| 3067 | // - If we are not running in a WebView, where 4444 isn't supported. |
| 3068 | if (!cmd.HasSwitch(switches::kDisableRGBA4444Textures) && |
| 3069 | base::SysInfo::AmountOfPhysicalMemoryMB() <= 512 && |
| 3070 | !using_synchronous_compositor) { |
| 3071 | settings.use_rgba_4444 = viz::RGBA_4444; |
| 3072 | |
| 3073 | // If we are going to unpremultiply and dither these tiles, we need to |
| 3074 | // allocate an additional RGBA_8888 intermediate for each tile |
| 3075 | // rasterization when rastering to RGBA_4444 to allow for dithering. |
| 3076 | // Setting a reasonable sized max tile size allows this intermediate to |
| 3077 | // be consistently reused. |
| 3078 | if (base::FeatureList::IsEnabled( |
| 3079 | kUnpremultiplyAndDitherLowBitDepthTiles)) { |
| 3080 | settings.max_gpu_raster_tile_size = gfx::Size(512, 256); |
| 3081 | settings.unpremultiply_and_dither_low_bit_depth_tiles = true; |
| 3082 | } |
| 3083 | } |
| 3084 | } |
| 3085 | |
| 3086 | if (cmd.HasSwitch(switches::kEnableLowResTiling)) |
| 3087 | settings.create_low_res_tiling = true; |
| 3088 | if (cmd.HasSwitch(switches::kDisableLowResTiling)) |
| 3089 | settings.create_low_res_tiling = false; |
| 3090 | |
| 3091 | if (cmd.HasSwitch(switches::kEnableRGBA4444Textures) && |
| 3092 | !cmd.HasSwitch(switches::kDisableRGBA4444Textures)) { |
| 3093 | settings.use_rgba_4444 = true; |
| 3094 | } |
| 3095 | |
| 3096 | settings.max_staging_buffer_usage_in_bytes = 32 * 1024 * 1024; // 32MB |
| 3097 | // Use 1/4th of staging buffers on low-end devices. |
| 3098 | if (base::SysInfo::IsLowEndDevice()) |
| 3099 | settings.max_staging_buffer_usage_in_bytes /= 4; |
| 3100 | |
| 3101 | cc::ManagedMemoryPolicy defaults = settings.memory_policy; |
| 3102 | settings.memory_policy = GetGpuMemoryPolicy(defaults, initial_screen_size, |
| 3103 | initial_device_scale_factor); |
| 3104 | |
| 3105 | settings.disallow_non_exact_resource_reuse = |
| 3106 | cmd.HasSwitch(switches::kDisallowNonExactResourceReuse); |
| 3107 | #if defined(OS_ANDROID) |
| 3108 | // TODO(crbug.com/746931): This feature appears to be causing visual |
| 3109 | // corruption on certain android devices. Will investigate and re-enable. |
| 3110 | settings.disallow_non_exact_resource_reuse = true; |
| 3111 | #endif |
| 3112 | |
| 3113 | if (cmd.HasSwitch(switches::kRunAllCompositorStagesBeforeDraw)) { |
| 3114 | settings.wait_for_all_pipeline_stages_before_draw = true; |
| 3115 | settings.enable_latency_recovery = false; |
| 3116 | } |
Eric Karl | 1e6ffca | 2019-02-23 22:08:50 | [diff] [blame] | 3117 | #if defined(OS_ANDROID) |
| 3118 | if (features::IsSurfaceSynchronizationEnabled()) { |
| 3119 | // TODO(crbug.com/933846): LatencyRecovery is causing jank on Android. |
Eric Karl | 75cd895 | 2019-03-19 21:33:10 | [diff] [blame] | 3120 | // Disable in viz mode for now, with plan to disable more widely once |
Eric Karl | 1e6ffca | 2019-02-23 22:08:50 | [diff] [blame] | 3121 | // viz launches. |
| 3122 | settings.enable_latency_recovery = false; |
| 3123 | } |
| 3124 | #endif |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 3125 | |
| 3126 | settings.enable_image_animation_resync = |
| 3127 | !cmd.HasSwitch(switches::kDisableImageAnimationResync); |
| 3128 | |
Karolina Soltys | 4d60b40 | 2018-10-01 19:28:20 | [diff] [blame] | 3129 | settings.send_compositor_frame_ack = false; |
| 3130 | |
danakj | 4b34721 | 2018-07-04 17:55:17 | [diff] [blame] | 3131 | return settings; |
| 3132 | } |
| 3133 | |
| 3134 | // static |
| 3135 | cc::ManagedMemoryPolicy RenderWidget::GetGpuMemoryPolicy( |
| 3136 | const cc::ManagedMemoryPolicy& default_policy, |
| 3137 | const gfx::Size& initial_screen_size, |
| 3138 | float initial_device_scale_factor) { |
| 3139 | cc::ManagedMemoryPolicy actual = default_policy; |
| 3140 | actual.bytes_limit_when_visible = 0; |
| 3141 | |
| 3142 | // If the value was overridden on the command line, use the specified value. |
| 3143 | static bool client_hard_limit_bytes_overridden = |
| 3144 | base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 3145 | switches::kForceGpuMemAvailableMb); |
| 3146 | if (client_hard_limit_bytes_overridden) { |
| 3147 | if (base::StringToSizeT( |
| 3148 | base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( |
| 3149 | switches::kForceGpuMemAvailableMb), |
| 3150 | &actual.bytes_limit_when_visible)) |
| 3151 | actual.bytes_limit_when_visible *= 1024 * 1024; |
| 3152 | return actual; |
| 3153 | } |
| 3154 | |
| 3155 | #if defined(OS_ANDROID) |
| 3156 | // We can't query available GPU memory from the system on Android. |
| 3157 | // Physical memory is also mis-reported sometimes (eg. Nexus 10 reports |
| 3158 | // 1262MB when it actually has 2GB, while Razr M has 1GB but only reports |
| 3159 | // 128MB java heap size). First we estimate physical memory using both. |
| 3160 | size_t dalvik_mb = base::SysInfo::DalvikHeapSizeMB(); |
| 3161 | size_t physical_mb = base::SysInfo::AmountOfPhysicalMemoryMB(); |
| 3162 | size_t physical_memory_mb = 0; |
| 3163 | if (base::SysInfo::IsLowEndDevice()) { |
| 3164 | // TODO(crbug.com/742534): The code below appears to no longer work. |
| 3165 | // |dalvik_mb| no longer follows the expected heuristic pattern, causing us |
| 3166 | // to over-estimate memory on low-end devices. This entire section probably |
| 3167 | // needs to be re-written, but for now we can address the low-end Android |
| 3168 | // issues by ignoring |dalvik_mb|. |
| 3169 | physical_memory_mb = physical_mb; |
| 3170 | } else if (dalvik_mb >= 256) { |
| 3171 | physical_memory_mb = dalvik_mb * 4; |
| 3172 | } else { |
| 3173 | physical_memory_mb = std::max(dalvik_mb * 4, (physical_mb * 4) / 3); |
| 3174 | } |
| 3175 | |
| 3176 | // Now we take a default of 1/8th of memory on high-memory devices, |
| 3177 | // and gradually scale that back for low-memory devices (to be nicer |
| 3178 | // to other apps so they don't get killed). Examples: |
| 3179 | // Nexus 4/10(2GB) 256MB (normally 128MB) |
| 3180 | // Droid Razr M(1GB) 114MB (normally 57MB) |
| 3181 | // Galaxy Nexus(1GB) 100MB (normally 50MB) |
| 3182 | // Xoom(1GB) 100MB (normally 50MB) |
| 3183 | // Nexus S(low-end) 8MB (normally 8MB) |
| 3184 | // Note that the compositor now uses only some of this memory for |
| 3185 | // pre-painting and uses the rest only for 'emergencies'. |
| 3186 | if (actual.bytes_limit_when_visible == 0) { |
| 3187 | // NOTE: Non-low-end devices use only 50% of these limits, |
| 3188 | // except during 'emergencies' where 100% can be used. |
| 3189 | if (physical_memory_mb >= 1536) |
| 3190 | actual.bytes_limit_when_visible = physical_memory_mb / 8; // >192MB |
| 3191 | else if (physical_memory_mb >= 1152) |
| 3192 | actual.bytes_limit_when_visible = physical_memory_mb / 8; // >144MB |
| 3193 | else if (physical_memory_mb >= 768) |
| 3194 | actual.bytes_limit_when_visible = physical_memory_mb / 10; // >76MB |
| 3195 | else if (physical_memory_mb >= 513) |
| 3196 | actual.bytes_limit_when_visible = physical_memory_mb / 12; // <64MB |
| 3197 | else |
| 3198 | // Devices with this little RAM have very little headroom so we hardcode |
| 3199 | // the limit rather than relying on the heuristics above. (They also use |
| 3200 | // 4444 textures so we can use a lower limit.) |
| 3201 | actual.bytes_limit_when_visible = 8; |
| 3202 | |
| 3203 | actual.bytes_limit_when_visible = |
| 3204 | actual.bytes_limit_when_visible * 1024 * 1024; |
| 3205 | // Clamp the observed value to a specific range on Android. |
| 3206 | actual.bytes_limit_when_visible = std::max( |
| 3207 | actual.bytes_limit_when_visible, static_cast<size_t>(8 * 1024 * 1024)); |
| 3208 | actual.bytes_limit_when_visible = |
| 3209 | std::min(actual.bytes_limit_when_visible, |
| 3210 | static_cast<size_t>(256 * 1024 * 1024)); |
| 3211 | } |
| 3212 | actual.priority_cutoff_when_visible = |
| 3213 | gpu::MemoryAllocation::CUTOFF_ALLOW_EVERYTHING; |
| 3214 | #else |
| 3215 | // Ignore what the system said and give all clients the same maximum |
| 3216 | // allocation on desktop platforms. |
| 3217 | actual.bytes_limit_when_visible = 512 * 1024 * 1024; |
| 3218 | actual.priority_cutoff_when_visible = |
| 3219 | gpu::MemoryAllocation::CUTOFF_ALLOW_NICE_TO_HAVE; |
| 3220 | |
| 3221 | // For large monitors (4k), double the tile memory to avoid frequent out of |
| 3222 | // memory problems. 4k could mean a screen width of anywhere from 3840 to 4096 |
| 3223 | // (see https://en.wikipedia.org/wiki/4K_resolution). We use 3500 as a proxy |
| 3224 | // for "large enough". |
| 3225 | static const int kLargeDisplayThreshold = 3500; |
| 3226 | int display_width = |
| 3227 | std::round(initial_screen_size.width() * initial_device_scale_factor); |
| 3228 | if (display_width >= kLargeDisplayThreshold) |
| 3229 | actual.bytes_limit_when_visible *= 2; |
| 3230 | #endif |
| 3231 | return actual; |
| 3232 | } |
| 3233 | |
Navid Zolghadr | 4ed3ae4 | 2019-05-03 17:02:12 | [diff] [blame] | 3234 | void RenderWidget::HasPointerRawUpdateEventHandlers(bool has_handlers) { |
Navid Zolghadr | 8fdb6114e | 2018-08-29 19:00:54 | [diff] [blame] | 3235 | if (input_event_queue_) |
Navid Zolghadr | 4ed3ae4 | 2019-05-03 17:02:12 | [diff] [blame] | 3236 | input_event_queue_->HasPointerRawUpdateEventHandlers(has_handlers); |
Navid Zolghadr | 8fdb6114e | 2018-08-29 19:00:54 | [diff] [blame] | 3237 | } |
| 3238 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 3239 | void RenderWidget::HasTouchEventHandlers(bool has_handlers) { |
W. James MacLean | 662d538 | 2018-03-29 18:33:08 | [diff] [blame] | 3240 | if (has_touch_handlers_ && *has_touch_handlers_ == has_handlers) |
| 3241 | return; |
| 3242 | |
| 3243 | has_touch_handlers_ = has_handlers; |
alexclarke | 7fa9394 | 2015-10-21 15:37:11 | [diff] [blame] | 3244 | if (render_widget_scheduling_state_) |
| 3245 | render_widget_scheduling_state_->SetHasTouchHandler(has_handlers); |
Albert J. Wong | eb28e7e | 2018-10-12 00:57:43 | [diff] [blame] | 3246 | Send(new WidgetHostMsg_HasTouchEventHandlers(routing_id_, has_handlers)); |
[email protected] | ce6689f | 2013-03-29 12:52:55 | [diff] [blame] | 3247 | } |
| 3248 | |
Dave Tapuska | dfe486c1 | 2017-06-09 16:53:13 | [diff] [blame] | 3249 | void RenderWidget::SetNeedsLowLatencyInput(bool needs_low_latency) { |
| 3250 | if (input_event_queue_) |
| 3251 | input_event_queue_->SetNeedsLowLatency(needs_low_latency); |
| 3252 | } |
| 3253 | |
Pavel Feldman | 6708eefa | 2019-01-17 03:14:32 | [diff] [blame] | 3254 | void RenderWidget::SetNeedsUnbufferedInputForDebugger(bool unbuffered) { |
| 3255 | if (input_event_queue_) |
| 3256 | input_event_queue_->SetNeedsUnbufferedInputForDebugger(unbuffered); |
| 3257 | } |
| 3258 | |
W. James MacLean | d973a55b | 2018-11-29 21:39:13 | [diff] [blame] | 3259 | void RenderWidget::AnimateDoubleTapZoomInMainFrame( |
| 3260 | const blink::WebPoint& point, |
| 3261 | const blink::WebRect& rect_to_zoom) { |
| 3262 | // Only oopif subframes should be sending this message. |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 3263 | DCHECK(!delegate()); |
W. James MacLean | d973a55b | 2018-11-29 21:39:13 | [diff] [blame] | 3264 | Send(new WidgetHostMsg_AnimateDoubleTapZoomInMainFrame(routing_id(), point, |
| 3265 | rect_to_zoom)); |
| 3266 | } |
| 3267 | |
W. James MacLean | 5372eb7 | 2018-12-19 12:56:36 | [diff] [blame] | 3268 | void RenderWidget::ZoomToFindInPageRectInMainFrame( |
| 3269 | const blink::WebRect& rect_to_zoom) { |
| 3270 | // Only oopif subframes should be sending this message. |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 3271 | DCHECK(!delegate_); |
W. James MacLean | 5372eb7 | 2018-12-19 12:56:36 | [diff] [blame] | 3272 | Send(new WidgetHostMsg_ZoomToFindInPageRectInMainFrame(routing_id(), |
| 3273 | rect_to_zoom)); |
| 3274 | } |
| 3275 | |
danakj | 4886cad | 2019-02-26 22:15:56 | [diff] [blame] | 3276 | void RenderWidget::RegisterViewportLayers(const cc::ViewportLayers& layers) { |
| 3277 | layer_tree_view_->layer_tree_host()->RegisterViewportLayers(layers); |
| 3278 | } |
| 3279 | |
| 3280 | void RenderWidget::RegisterSelection(const cc::LayerSelection& selection) { |
| 3281 | layer_tree_view_->layer_tree_host()->RegisterSelection(selection); |
| 3282 | } |
| 3283 | |
chaopeng | 161241b7 | 2019-03-21 18:25:17 | [diff] [blame] | 3284 | void RenderWidget::FallbackCursorModeLockCursor(bool left, |
| 3285 | bool right, |
| 3286 | bool up, |
| 3287 | bool down) { |
| 3288 | widget_input_handler_manager_->FallbackCursorModeLockCursor(left, right, up, |
| 3289 | down); |
| 3290 | } |
| 3291 | |
| 3292 | void RenderWidget::FallbackCursorModeSetCursorVisibility(bool visible) { |
| 3293 | widget_input_handler_manager_->FallbackCursorModeSetCursorVisibility(visible); |
| 3294 | } |
| 3295 | |
danakj | 35c203a | 2019-04-16 17:12:39 | [diff] [blame] | 3296 | void RenderWidget::SetAllowGpuRasterization(bool allow_gpu_raster) { |
| 3297 | layer_tree_view_->layer_tree_host()->SetHasGpuRasterizationTrigger( |
| 3298 | allow_gpu_raster); |
| 3299 | } |
| 3300 | |
W. James MacLean | fb42e13e | 2019-05-17 15:25:55 | [diff] [blame] | 3301 | void RenderWidget::SetPageScaleStateAndLimits(float page_scale_factor, |
| 3302 | bool is_pinch_gesture_active, |
| 3303 | float minimum, |
| 3304 | float maximum) { |
danakj | 77821e25 | 2019-03-27 19:58:04 | [diff] [blame] | 3305 | layer_tree_view_->layer_tree_host()->SetPageScaleFactorAndLimits( |
| 3306 | page_scale_factor, minimum, maximum); |
W. James MacLean | fb42e13e | 2019-05-17 15:25:55 | [diff] [blame] | 3307 | |
| 3308 | // Only continue if this is a mainframe, or something's actually changed. |
| 3309 | if (!delegate() || |
| 3310 | (page_scale_factor == page_scale_factor_from_mainframe_ && |
| 3311 | is_pinch_gesture_active == is_pinch_gesture_active_from_mainframe_)) { |
| 3312 | return; |
| 3313 | } |
| 3314 | |
| 3315 | // The page scale is controlled by the WebView for the local main frame of |
| 3316 | // the Page. So this is called from blink by for the RenderWidget of that |
| 3317 | // local main frame. We forward the value on to each child RenderWidget (each |
| 3318 | // of which will be via proxy child frame). These will each in turn forward |
| 3319 | // the message to their child RenderWidgets (through their proxy child |
| 3320 | // frames). |
| 3321 | DCHECK(!is_frozen_); |
| 3322 | |
| 3323 | for (auto& observer : render_frame_proxies_) { |
| 3324 | observer.OnPageScaleFactorChanged(page_scale_factor, |
| 3325 | is_pinch_gesture_active); |
| 3326 | } |
| 3327 | // Store the value to give to any new RenderFrameProxy that is registered. |
| 3328 | page_scale_factor_from_mainframe_ = page_scale_factor; |
| 3329 | is_pinch_gesture_active_from_mainframe_ = is_pinch_gesture_active; |
danakj | 77821e25 | 2019-03-27 19:58:04 | [diff] [blame] | 3330 | } |
| 3331 | |
| 3332 | void RenderWidget::StartPageScaleAnimation(const gfx::Vector2d& target_offset, |
| 3333 | bool use_anchor, |
| 3334 | float new_page_scale, |
| 3335 | double duration_sec) { |
| 3336 | base::TimeDelta duration = base::TimeDelta::FromSecondsD(duration_sec); |
| 3337 | layer_tree_view_->layer_tree_host()->StartPageScaleAnimation( |
| 3338 | target_offset, use_anchor, new_page_scale, duration); |
| 3339 | } |
| 3340 | |
danakj | da15621e | 2019-04-05 20:34:43 | [diff] [blame] | 3341 | void RenderWidget::RequestDecode(const cc::PaintImage& image, |
| 3342 | base::OnceCallback<void(bool)> callback) { |
| 3343 | layer_tree_view_->layer_tree_host()->QueueImageDecode(image, |
| 3344 | std::move(callback)); |
| 3345 | } |
| 3346 | |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 3347 | // Enables measuring and reporting both presentation times and swap times in |
| 3348 | // swap promises. |
| 3349 | class ReportTimeSwapPromise : public cc::SwapPromise { |
| 3350 | using ReportTimeCallback = blink::WebWidgetClient::ReportTimeCallback; |
| 3351 | |
| 3352 | public: |
| 3353 | ReportTimeSwapPromise(ReportTimeCallback callback, |
| 3354 | scoped_refptr<base::SingleThreadTaskRunner> task_runner, |
| 3355 | base::WeakPtr<RenderWidget> render_widget) |
| 3356 | : callback_(std::move(callback)), |
| 3357 | task_runner_(std::move(task_runner)), |
| 3358 | render_widget_(std::move(render_widget)) {} |
| 3359 | ~ReportTimeSwapPromise() override = default; |
| 3360 | |
| 3361 | void DidActivate() override {} |
| 3362 | |
| 3363 | void WillSwap(viz::CompositorFrameMetadata* metadata) override { |
| 3364 | DCHECK_GT(metadata->frame_token, 0u); |
| 3365 | // The interval between the current swap and its presentation time is |
| 3366 | // reported in UMA (see corresponding code in DidSwap() below). |
| 3367 | frame_token_ = metadata->frame_token; |
| 3368 | } |
| 3369 | void DidSwap() override { |
| 3370 | DCHECK_GT(frame_token_, 0u); |
| 3371 | task_runner_->PostTask( |
| 3372 | FROM_HERE, |
| 3373 | base::BindOnce( |
| 3374 | [](base::TimeTicks timestamp, ReportTimeCallback callback, |
| 3375 | base::WeakPtr<RenderWidget> render_widget, int frame_token) { |
| 3376 | std::move(callback).Run( |
| 3377 | blink::WebWidgetClient::SwapResult::kDidSwap, timestamp); |
| 3378 | if (render_widget) { |
| 3379 | render_widget->layer_tree_view()->AddPresentationCallback( |
| 3380 | frame_token, |
| 3381 | base::BindOnce(&RecordSwapTimeToPresentationTime, |
| 3382 | timestamp)); |
| 3383 | } |
| 3384 | }, |
| 3385 | base::TimeTicks::Now(), std::move(callback_), render_widget_, |
| 3386 | frame_token_)); |
| 3387 | } |
| 3388 | |
Bo Liu | def993a | 2019-04-24 20:08:49 | [diff] [blame] | 3389 | cc::SwapPromise::DidNotSwapAction DidNotSwap( |
| 3390 | DidNotSwapReason reason) override { |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 3391 | blink::WebWidgetClient::SwapResult result; |
| 3392 | switch (reason) { |
| 3393 | case cc::SwapPromise::DidNotSwapReason::SWAP_FAILS: |
| 3394 | result = blink::WebWidgetClient::SwapResult::kDidNotSwapSwapFails; |
| 3395 | break; |
| 3396 | case cc::SwapPromise::DidNotSwapReason::COMMIT_FAILS: |
| 3397 | result = blink::WebWidgetClient::SwapResult::kDidNotSwapCommitFails; |
| 3398 | break; |
| 3399 | case cc::SwapPromise::DidNotSwapReason::COMMIT_NO_UPDATE: |
| 3400 | result = blink::WebWidgetClient::SwapResult::kDidNotSwapCommitNoUpdate; |
| 3401 | break; |
| 3402 | case cc::SwapPromise::DidNotSwapReason::ACTIVATION_FAILS: |
| 3403 | result = blink::WebWidgetClient::SwapResult::kDidNotSwapActivationFails; |
| 3404 | break; |
| 3405 | } |
| 3406 | // During a failed swap, return the current time regardless of whether we're |
| 3407 | // using presentation or swap timestamps. |
| 3408 | task_runner_->PostTask( |
| 3409 | FROM_HERE, |
| 3410 | base::BindOnce(std::move(callback_), result, base::TimeTicks::Now())); |
Bo Liu | def993a | 2019-04-24 20:08:49 | [diff] [blame] | 3411 | return DidNotSwapAction::BREAK_PROMISE; |
danakj | 2d2889a | 2019-04-05 21:22:08 | [diff] [blame] | 3412 | } |
| 3413 | |
| 3414 | int64_t TraceId() const override { return 0; } |
| 3415 | |
| 3416 | private: |
| 3417 | static void RecordSwapTimeToPresentationTime( |
| 3418 | base::TimeTicks swap_time, |
| 3419 | base::TimeTicks presentation_time) { |
| 3420 | DCHECK(!swap_time.is_null()); |
| 3421 | bool presentation_time_is_valid = |
| 3422 | !presentation_time.is_null() && (presentation_time > swap_time); |
| 3423 | UMA_HISTOGRAM_BOOLEAN("PageLoad.Internal.Renderer.PresentationTime.Valid", |
| 3424 | presentation_time_is_valid); |
| 3425 | if (presentation_time_is_valid) { |
| 3426 | // This measures from 1ms to 10seconds. |
| 3427 | UMA_HISTOGRAM_TIMES( |
| 3428 | "PageLoad.Internal.Renderer.PresentationTime.DeltaFromSwapTime", |
| 3429 | presentation_time - swap_time); |
| 3430 | } |
| 3431 | } |
| 3432 | |
| 3433 | ReportTimeCallback callback_; |
| 3434 | scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
| 3435 | base::WeakPtr<RenderWidget> render_widget_; |
| 3436 | uint32_t frame_token_ = 0; |
| 3437 | |
| 3438 | DISALLOW_COPY_AND_ASSIGN(ReportTimeSwapPromise); |
| 3439 | }; |
| 3440 | |
| 3441 | void RenderWidget::NotifySwapTime(ReportTimeCallback callback) { |
| 3442 | cc::LayerTreeHost* layer_tree_host = layer_tree_view_->layer_tree_host(); |
| 3443 | // When the WebWidget is closed we cancel any pending SwapPromise that would |
| 3444 | // call back into blink, so we use |close_weak_ptr_factory_|. |
| 3445 | layer_tree_host->QueueSwapPromise(std::make_unique<ReportTimeSwapPromise>( |
| 3446 | std::move(callback), |
| 3447 | layer_tree_host->GetTaskRunnerProvider()->MainThreadTaskRunner(), |
| 3448 | close_weak_ptr_factory_.GetWeakPtr())); |
| 3449 | } |
| 3450 | |
Dave Tapuska | bafc2ba3 | 2017-11-28 01:54:37 | [diff] [blame] | 3451 | void RenderWidget::RequestUnbufferedInputEvents() { |
| 3452 | if (input_event_queue_) |
| 3453 | input_event_queue_->RequestUnbufferedInputEvents(); |
| 3454 | } |
| 3455 | |
xidachen | fa0199e7 | 2017-05-11 11:34:26 | [diff] [blame] | 3456 | void RenderWidget::SetTouchAction(cc::TouchAction touch_action) { |
Dave Tapuska | b28a108 | 2017-08-30 15:37:26 | [diff] [blame] | 3457 | if (!input_handler_->ProcessTouchAction(touch_action)) |
[email protected] | 5d0bbdfa9 | 2013-12-10 00:35:51 | [diff] [blame] | 3458 | return; |
| 3459 | |
Dave Tapuska | 04bc5ee9 | 2018-04-17 19:03:31 | [diff] [blame] | 3460 | widget_input_handler_manager_->ProcessTouchAction(touch_action); |
[email protected] | 5d0bbdfa9 | 2013-12-10 00:35:51 | [diff] [blame] | 3461 | } |
| 3462 | |
[email protected] | e3244ed | 2014-06-20 20:04:27 | [diff] [blame] | 3463 | void RenderWidget::RegisterRenderFrameProxy(RenderFrameProxy* proxy) { |
| 3464 | render_frame_proxies_.AddObserver(proxy); |
danakj | 0246bba0 | 2019-01-23 23:12:27 | [diff] [blame] | 3465 | // Page scale factor is propagated down the RenderWidget tree (across |
| 3466 | // frame trees). A new RenderFrameProxy means there is a new child |
| 3467 | // RenderWidget in another frame tree. In order for it to hear about |
| 3468 | // the page scale factor we pass along the last seen value here. |
W. James MacLean | 2cd99b6 | 2019-04-08 13:54:43 | [diff] [blame] | 3469 | proxy->OnPageScaleFactorChanged(page_scale_factor_from_mainframe_, |
| 3470 | is_pinch_gesture_active_from_mainframe_); |
[email protected] | bffc830 | 2014-01-23 20:52:16 | [diff] [blame] | 3471 | } |
| 3472 | |
[email protected] | e3244ed | 2014-06-20 20:04:27 | [diff] [blame] | 3473 | void RenderWidget::UnregisterRenderFrameProxy(RenderFrameProxy* proxy) { |
| 3474 | render_frame_proxies_.RemoveObserver(proxy); |
[email protected] | bffc830 | 2014-01-23 20:52:16 | [diff] [blame] | 3475 | } |
| 3476 | |
[email protected] | de3c5d8 | 2014-05-28 22:12:59 | [diff] [blame] | 3477 | void RenderWidget::RegisterRenderFrame(RenderFrameImpl* frame) { |
| 3478 | render_frames_.AddObserver(frame); |
| 3479 | } |
| 3480 | |
| 3481 | void RenderWidget::UnregisterRenderFrame(RenderFrameImpl* frame) { |
| 3482 | render_frames_.RemoveObserver(frame); |
| 3483 | } |
| 3484 | |
Saman Sami | d189e5dfd | 2017-12-20 22:55:31 | [diff] [blame] | 3485 | void RenderWidget::RegisterBrowserPlugin(BrowserPlugin* browser_plugin) { |
| 3486 | browser_plugins_.AddObserver(browser_plugin); |
Saman Sami | 50d1e0c | 2018-03-13 20:03:49 | [diff] [blame] | 3487 | browser_plugin->ScreenInfoChanged(GetOriginalScreenInfo()); |
Saman Sami | d189e5dfd | 2017-12-20 22:55:31 | [diff] [blame] | 3488 | } |
| 3489 | |
| 3490 | void RenderWidget::UnregisterBrowserPlugin(BrowserPlugin* browser_plugin) { |
| 3491 | browser_plugins_.RemoveObserver(browser_plugin); |
| 3492 | } |
| 3493 | |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 3494 | void RenderWidget::OnWaitNextFrameForTests( |
| 3495 | int main_frame_thread_observer_routing_id) { |
danakj | 5380269 | 2018-07-25 21:46:44 | [diff] [blame] | 3496 | // Sends an ACK to the browser process during the next compositor frame. |
Albert J. Wong | 3c93c18 | 2018-09-27 17:29:43 | [diff] [blame] | 3497 | QueueMessage(new WidgetHostMsg_WaitForNextFrameForTests_ACK( |
| 3498 | main_frame_thread_observer_routing_id)); |
lfg | 43e08e6 | 2016-02-03 18:51:37 | [diff] [blame] | 3499 | } |
| 3500 | |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 3501 | const ScreenInfo& RenderWidget::GetWebScreenInfo() const { |
| 3502 | return screen_info_; |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 3503 | } |
| 3504 | |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 3505 | const ScreenInfo& RenderWidget::GetOriginalScreenInfo() const { |
Christopher Cameron | e9a30c1 | 2018-03-07 08:23:38 | [diff] [blame] | 3506 | return screen_metrics_emulator_ |
| 3507 | ? screen_metrics_emulator_->original_screen_info() |
Fady Samuel | a863f15 | 2018-03-09 16:10:03 | [diff] [blame] | 3508 | : screen_info_; |
oshima | 50872a7 | 2016-03-04 13:26:18 | [diff] [blame] | 3509 | } |
| 3510 | |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 3511 | gfx::PointF RenderWidget::ConvertWindowPointToViewport( |
| 3512 | const gfx::PointF& point) { |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 3513 | blink::WebFloatRect point_in_viewport(point.x(), point.y(), 0, 0); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 3514 | ConvertWindowToViewport(&point_in_viewport); |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 3515 | return gfx::PointF(point_in_viewport.x, point_in_viewport.y); |
| 3516 | } |
| 3517 | |
| 3518 | gfx::Point RenderWidget::ConvertWindowPointToViewport(const gfx::Point& point) { |
| 3519 | return gfx::ToRoundedPoint(ConvertWindowPointToViewport(gfx::PointF(point))); |
paulmeyer | 90f6c31d | 2016-11-12 00:17:59 | [diff] [blame] | 3520 | } |
| 3521 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 3522 | bool RenderWidget::RequestPointerLock() { |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 3523 | return mouse_lock_dispatcher_->LockMouse(webwidget_mouse_lock_target_.get()); |
| 3524 | } |
| 3525 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 3526 | void RenderWidget::RequestPointerUnlock() { |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 3527 | mouse_lock_dispatcher_->UnlockMouse(webwidget_mouse_lock_target_.get()); |
| 3528 | } |
| 3529 | |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 3530 | bool RenderWidget::IsPointerLocked() { |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 3531 | return mouse_lock_dispatcher_->IsMouseLockedTo( |
| 3532 | webwidget_mouse_lock_target_.get()); |
| 3533 | } |
| 3534 | |
Richard Li | 49fe04d | 2018-10-21 09:07:19 | [diff] [blame] | 3535 | void RenderWidget::StartDragging(network::mojom::ReferrerPolicy policy, |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 3536 | const WebDragData& data, |
| 3537 | WebDragOperationsMask mask, |
danakj | 0c75ad8 | 2018-07-10 19:50:12 | [diff] [blame] | 3538 | const SkBitmap& drag_image, |
danakj | ef1735a | 2018-11-13 19:34:44 | [diff] [blame] | 3539 | const gfx::Point& web_image_offset) { |
| 3540 | blink::WebRect offset_in_window(web_image_offset.x(), web_image_offset.y(), 0, |
| 3541 | 0); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 3542 | ConvertViewportToWindow(&offset_in_window); |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 3543 | DropData drop_data(DropDataBuilder::Build(data)); |
| 3544 | drop_data.referrer_policy = policy; |
danakj | 0c75ad8 | 2018-07-10 19:50:12 | [diff] [blame] | 3545 | gfx::Vector2d image_offset(offset_in_window.x, offset_in_window.y); |
| 3546 | Send(new DragHostMsg_StartDragging(routing_id(), drop_data, mask, drag_image, |
| 3547 | image_offset, possible_drag_event_info_)); |
paulmeyer | 6ef5a79 | 2016-11-08 20:33:58 | [diff] [blame] | 3548 | } |
| 3549 | |
kenrb | 5d78b84 | 2017-03-06 21:06:01 | [diff] [blame] | 3550 | uint32_t RenderWidget::GetContentSourceId() { |
| 3551 | return current_content_source_id_; |
| 3552 | } |
| 3553 | |
Saman Sami | f773134 | 2018-01-24 22:18:44 | [diff] [blame] | 3554 | void RenderWidget::DidNavigate() { |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 3555 | // Blink may be navigating still between the Close IPC and the task that |
| 3556 | // actually closes this class, and for a main frame that would come through |
| 3557 | // this method. But since we are closing we can skip it. |
| 3558 | if (closing_) |
Kinuko Yasuda | bef2b64 | 2019-01-24 04:53:33 | [diff] [blame] | 3559 | return; |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 3560 | |
| 3561 | ++current_content_source_id_; |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 3562 | layer_tree_view_->SetContentSourceId(current_content_source_id_); |
| 3563 | layer_tree_view_->ClearCachesOnNextCommit(); |
kenrb | 5d78b84 | 2017-03-06 21:06:01 | [diff] [blame] | 3564 | } |
| 3565 | |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 3566 | blink::WebWidget* RenderWidget::GetWebWidget() const { |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 3567 | if (delegate()) { |
| 3568 | blink::WebWidget* delegate_widget = delegate()->GetWebWidgetForWidget(); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 3569 | if (delegate_widget) |
| 3570 | return delegate_widget; |
| 3571 | } |
lfg | 8ff3391 | 2016-09-13 20:59:21 | [diff] [blame] | 3572 | return webwidget_internal_; |
| 3573 | } |
| 3574 | |
ekaramad | 2daaf67 | 2016-11-10 20:29:01 | [diff] [blame] | 3575 | blink::WebInputMethodController* RenderWidget::GetInputMethodController() |
| 3576 | const { |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 3577 | if (auto* frame_widget = GetFrameWidget()) |
| 3578 | return frame_widget->GetActiveWebInputMethodController(); |
| 3579 | |
| 3580 | return nullptr; |
ekaramad | 2daaf67 | 2016-11-10 20:29:01 | [diff] [blame] | 3581 | } |
| 3582 | |
Dave Tapuska | 139a72f | 2017-09-06 21:57:03 | [diff] [blame] | 3583 | void RenderWidget::SetupWidgetInputHandler( |
| 3584 | mojom::WidgetInputHandlerRequest request, |
| 3585 | mojom::WidgetInputHandlerHostPtr host) { |
Dave Tapuska | b66c28f | 2017-11-15 17:18:47 | [diff] [blame] | 3586 | widget_input_handler_manager_->AddInterface(std::move(request), |
| 3587 | std::move(host)); |
Dave Tapuska | 525eb15e | 2017-08-17 21:05:50 | [diff] [blame] | 3588 | } |
| 3589 | |
Dave Tapuska | 485aca9 | 2017-08-08 00:47:58 | [diff] [blame] | 3590 | void RenderWidget::SetWidgetBinding(mojom::WidgetRequest request) { |
| 3591 | // Close the old binding if there was one. |
| 3592 | // A RenderWidgetHost should not need more than one channel. |
| 3593 | widget_binding_.Close(); |
| 3594 | widget_binding_.Bind(std::move(request)); |
| 3595 | } |
| 3596 | |
Ken Buchanan | 94c0beb6 | 2018-06-22 19:56:24 | [diff] [blame] | 3597 | void RenderWidget::SetMouseCapture(bool capture) { |
| 3598 | if (mojom::WidgetInputHandlerHost* host = |
| 3599 | widget_input_handler_manager_->GetWidgetInputHandlerHost()) { |
| 3600 | host->SetMouseCapture(capture); |
| 3601 | } |
| 3602 | } |
| 3603 | |
Fady Samuel | ca9ecb7 | 2018-05-05 05:59:27 | [diff] [blame] | 3604 | bool RenderWidget::IsSurfaceSynchronizationEnabled() const { |
danakj | a6c1001 | 2018-07-06 14:25:36 | [diff] [blame] | 3605 | return layer_tree_view_ && |
| 3606 | layer_tree_view_->IsSurfaceSynchronizationEnabled(); |
Fady Samuel | ca9ecb7 | 2018-05-05 05:59:27 | [diff] [blame] | 3607 | } |
| 3608 | |
danakj | 5380269 | 2018-07-25 21:46:44 | [diff] [blame] | 3609 | void RenderWidget::UseSynchronousResizeModeForTesting(bool enable) { |
danakj | 7602f4f | 2019-01-31 18:03:23 | [diff] [blame] | 3610 | synchronous_resize_mode_for_testing_ = enable; |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 3611 | } |
| 3612 | |
| 3613 | void RenderWidget::SetDeviceScaleFactorForTesting(float factor) { |
danakj | b4cec10 | 2019-01-30 19:22:13 | [diff] [blame] | 3614 | DCHECK_GT(factor, 0.f); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 3615 | |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 3616 | // We are changing the device scale factor from the renderer, so allocate a |
| 3617 | // new viz::LocalSurfaceId to avoid surface invariants violations in tests. |
danakj | 125a29e | 2019-01-24 23:25:29 | [diff] [blame] | 3618 | layer_tree_view_->RequestNewLocalSurfaceId(); |
danakj | b4cec10 | 2019-01-30 19:22:13 | [diff] [blame] | 3619 | |
| 3620 | ScreenInfo info = screen_info_; |
| 3621 | info.device_scale_factor = factor; |
| 3622 | gfx::Size viewport_pixel_size = gfx::ScaleToCeiledSize(size_, factor); |
| 3623 | UpdateSurfaceAndScreenInfo(local_surface_id_allocation_from_parent_, |
| 3624 | viewport_pixel_size, info); |
| 3625 | |
| 3626 | ResizeWebWidget(); // This picks up the new device scale factor in |info|. |
| 3627 | |
| 3628 | gfx::Size visible_viewport_size = visible_viewport_size_; |
| 3629 | if (compositor_deps_->IsUseZoomForDSFEnabled()) { |
| 3630 | visible_viewport_size = |
| 3631 | gfx::ScaleToCeiledSize(visible_viewport_size, factor); |
| 3632 | } |
| 3633 | GetWebWidget()->ResizeVisualViewport(visible_viewport_size); |
| 3634 | |
| 3635 | // Make sure the DSF override stays for future VisualProperties updates, and |
| 3636 | // that includes overriding the VisualProperties' |
| 3637 | // compositor_viewport_pixel_size with size * this for-testing DSF. |
| 3638 | device_scale_factor_for_testing_ = factor; |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 3639 | } |
| 3640 | |
| 3641 | void RenderWidget::SetDeviceColorSpaceForTesting( |
| 3642 | const gfx::ColorSpace& color_space) { |
danakj | b4cec10 | 2019-01-30 19:22:13 | [diff] [blame] | 3643 | // We are changing the device color space from the renderer, so allocate a |
| 3644 | // new viz::LocalSurfaceId to avoid surface invariants violations in tests. |
| 3645 | layer_tree_view_->RequestNewLocalSurfaceId(); |
| 3646 | |
danakj | 04d128a | 2019-01-25 02:10:20 | [diff] [blame] | 3647 | ScreenInfo info = screen_info_; |
| 3648 | info.color_space = color_space; |
| 3649 | UpdateSurfaceAndScreenInfo(local_surface_id_allocation_from_parent_, |
danakj | 0d963bd | 2019-02-20 18:00:46 | [diff] [blame] | 3650 | CompositorViewportSize(), info); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 3651 | } |
| 3652 | |
| 3653 | void RenderWidget::SetWindowRectSynchronouslyForTesting( |
| 3654 | const gfx::Rect& new_window_rect) { |
| 3655 | SetWindowRectSynchronously(new_window_rect); |
| 3656 | } |
| 3657 | |
| 3658 | void RenderWidget::EnableAutoResizeForTesting(const gfx::Size& min_size, |
| 3659 | const gfx::Size& max_size) { |
| 3660 | VisualProperties visual_properties; |
| 3661 | visual_properties.auto_resize_enabled = true; |
| 3662 | visual_properties.min_size_for_auto_resize = min_size; |
| 3663 | visual_properties.max_size_for_auto_resize = max_size; |
Fady Samuel | 84d8a1f7 | 2018-11-08 00:26:17 | [diff] [blame] | 3664 | visual_properties.local_surface_id_allocation = |
| 3665 | base::Optional<viz::LocalSurfaceIdAllocation>( |
| 3666 | viz::LocalSurfaceIdAllocation( |
| 3667 | viz::LocalSurfaceId(1, 1, base::UnguessableToken::Create()), |
| 3668 | base::TimeTicks::Now())); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 3669 | OnSynchronizeVisualProperties(visual_properties); |
| 3670 | } |
| 3671 | |
| 3672 | void RenderWidget::DisableAutoResizeForTesting(const gfx::Size& new_size) { |
| 3673 | if (!auto_resize_mode_) |
| 3674 | return; |
| 3675 | |
| 3676 | VisualProperties visual_properties; |
| 3677 | visual_properties.auto_resize_enabled = false; |
| 3678 | visual_properties.screen_info = screen_info_; |
| 3679 | visual_properties.new_size = new_size; |
danakj | 0d963bd | 2019-02-20 18:00:46 | [diff] [blame] | 3680 | visual_properties.compositor_viewport_pixel_size = CompositorViewportSize(); |
danakj | a2c9d0a9 | 2018-07-25 20:01:18 | [diff] [blame] | 3681 | visual_properties.browser_controls_shrink_blink_size = |
| 3682 | browser_controls_shrink_blink_size_; |
| 3683 | visual_properties.top_controls_height = top_controls_height_; |
| 3684 | visual_properties.visible_viewport_size = visible_viewport_size_; |
| 3685 | visual_properties.is_fullscreen_granted = is_fullscreen_granted_; |
| 3686 | visual_properties.display_mode = display_mode_; |
| 3687 | OnSynchronizeVisualProperties(visual_properties); |
| 3688 | } |
| 3689 | |
EhsanK | 955ba58 | 2017-11-30 21:14:40 | [diff] [blame] | 3690 | blink::WebLocalFrame* RenderWidget::GetFocusedWebLocalFrameInWidget() const { |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 3691 | if (auto* frame_widget = GetFrameWidget()) |
| 3692 | return frame_widget->FocusedWebLocalFrameInWidget(); |
| 3693 | return nullptr; |
EhsanK | 955ba58 | 2017-11-30 21:14:40 | [diff] [blame] | 3694 | } |
| 3695 | |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 3696 | #if BUILDFLAG(ENABLE_PLUGINS) |
| 3697 | PepperPluginInstanceImpl* RenderWidget::GetFocusedPepperPluginInsideWidget() { |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 3698 | blink::WebFrameWidget* frame_widget = GetFrameWidget(); |
| 3699 | if (!frame_widget) |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 3700 | return nullptr; |
| 3701 | |
| 3702 | // Focused pepper instance might not always be in the focused frame. For |
| 3703 | // instance if a pepper instance and its embedder frame are focused an then |
| 3704 | // another frame takes focus using javascript, the embedder frame will no |
| 3705 | // longer be focused while the pepper instance is (the embedder frame's |
| 3706 | // |focused_pepper_plugin_| is not nullptr). Especially, if the pepper plugin |
| 3707 | // is fullscreen, clicking into the pepper will not refocus the embedder |
| 3708 | // frame. This is why we have to traverse the whole frame tree to find the |
| 3709 | // focused plugin. |
Ehsan Karamad | 655d7b8a | 2018-01-12 18:38:38 | [diff] [blame] | 3710 | blink::WebFrame* current_frame = frame_widget->LocalRoot(); |
EhsanK | 22d482e | 2017-08-10 17:29:49 | [diff] [blame] | 3711 | while (current_frame) { |
| 3712 | RenderFrameImpl* render_frame = |
| 3713 | current_frame->IsWebLocalFrame() |
| 3714 | ? RenderFrameImpl::FromWebFrame(current_frame) |
| 3715 | : nullptr; |
| 3716 | if (render_frame && render_frame->focused_pepper_plugin()) |
| 3717 | return render_frame->focused_pepper_plugin(); |
| 3718 | current_frame = current_frame->TraverseNext(); |
| 3719 | } |
| 3720 | return nullptr; |
| 3721 | } |
| 3722 | #endif |
| 3723 | |
Ken Buchanan | b2c9e26 | 2018-03-10 16:53:31 | [diff] [blame] | 3724 | gfx::Rect RenderWidget::ViewportVisibleRect() { |
danakj | 9c4e7b81 | 2019-02-19 22:04:27 | [diff] [blame] | 3725 | if (for_child_local_root_frame_) |
| 3726 | return compositor_visible_rect_; |
danakj | 0d963bd | 2019-02-20 18:00:46 | [diff] [blame] | 3727 | return gfx::Rect(CompositorViewportSize()); |
Ken Buchanan | b2c9e26 | 2018-03-10 16:53:31 | [diff] [blame] | 3728 | } |
| 3729 | |
Hajime Hoshi | 315a61f | 2018-08-14 17:27:28 | [diff] [blame] | 3730 | // static |
| 3731 | scoped_refptr<base::SingleThreadTaskRunner> |
| 3732 | RenderWidget::GetCleanupTaskRunner() { |
| 3733 | return RenderThreadImpl::current_blink_platform_impl() |
| 3734 | ->main_thread_scheduler() |
| 3735 | ->CleanupTaskRunner(); |
| 3736 | } |
| 3737 | |
Saman Sami | 50d1e0c | 2018-03-13 20:03:49 | [diff] [blame] | 3738 | base::WeakPtr<RenderWidget> RenderWidget::AsWeakPtr() { |
| 3739 | return weak_ptr_factory_.GetWeakPtr(); |
| 3740 | } |
| 3741 | |
[email protected] | e9ff79c | 2012-10-19 21:31:26 | [diff] [blame] | 3742 | } // namespace content |