blob: 8f1d752cabf607719b9718247df99d7607693436 [file] [log] [blame]
[email protected]9f4f3322012-01-18 22:29:561// Copyright (c) 2012 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit09911bf2008-07-26 23:55:294
[email protected]2cff0052011-03-18 16:51:445#ifndef CONTENT_RENDERER_RENDER_WIDGET_H_
6#define CONTENT_RENDERER_RENDER_WIDGET_H_
initial.commit09911bf2008-07-26 23:55:297
avi1023d012015-12-25 02:39:148#include <stddef.h>
9#include <stdint.h>
10
[email protected]aa4117f2011-12-09 22:19:2111#include <deque>
[email protected]0e241b4b2012-08-18 09:06:2712#include <map>
dchengcedca5612016-04-09 01:40:1513#include <memory>
xlai180af792016-08-26 22:07:4214#include <queue>
pwnallef669312017-01-07 01:17:2915#include <string>
16#include <vector>
[email protected]010ea08a2009-10-11 20:21:3217
[email protected]586871b2014-07-22 17:05:1118#include "base/callback.h"
[email protected]f3112a52011-09-30 23:47:4919#include "base/compiler_specific.h"
avi1023d012015-12-25 02:39:1420#include "base/macros.h"
[email protected]3b63f8f42011-03-28 01:54:1521#include "base/memory/ref_counted.h"
wjmaclean1d970622017-01-21 22:28:2422#include "base/memory/weak_ptr.h"
[email protected]bffc8302014-01-23 20:52:1623#include "base/observer_list.h"
[email protected]abb522162013-06-28 01:54:1624#include "base/time/time.h"
avi1023d012015-12-25 02:39:1425#include "build/build_config.h"
xidachenfa0199e72017-05-11 11:34:2626#include "cc/input/touch_action.h"
fsamuelca02c4e2017-05-09 13:34:1427#include "cc/surfaces/local_surface_id.h"
[email protected]f3112a52011-09-30 23:47:4928#include "content/common/content_export.h"
[email protected]c2809346d2014-03-20 00:11:0329#include "content/common/cursors/webcursor.h"
paulmeyer6ef5a792016-11-08 20:33:5830#include "content/common/drag_event_source_info.h"
alexmos56567492016-09-13 00:52:4631#include "content/common/edit_command.h"
thakis18e426412017-03-15 12:06:3732#include "content/common/features.h"
[email protected]9017d7852013-11-21 17:47:3533#include "content/common/input/synthetic_gesture_params.h"
paulmeyer90f6c31d2016-11-12 00:17:5934#include "content/public/common/drop_data.h"
ccameron2f451532016-09-07 21:49:2735#include "content/public/common/screen_info.h"
mfomitchev2600fd7c2016-02-17 20:53:3936#include "content/renderer/devtools/render_widget_screen_metrics_emulator_delegate.h"
fsamuel78f86e42016-01-20 04:10:2337#include "content/renderer/gpu/render_widget_compositor_delegate.h"
dtapuska9ec1a912017-04-21 15:18:3138#include "content/renderer/input/main_thread_event_queue.h"
fsamuel72464894f2015-12-15 06:59:3139#include "content/renderer/input/render_widget_input_handler.h"
40#include "content/renderer/input/render_widget_input_handler_delegate.h"
[email protected]586871b2014-07-22 17:05:1141#include "content/renderer/message_delivery_policy.h"
lfgbee1e0a2016-06-08 21:24:2142#include "content/renderer/mouse_lock_dispatcher.h"
43#include "content/renderer/render_widget_mouse_lock_dispatcher.h"
[email protected]4f86bdb2012-11-10 19:11:1944#include "ipc/ipc_listener.h"
nick4df698d82016-11-11 20:39:2345#include "ipc/ipc_message.h"
[email protected]4f86bdb2012-11-10 19:11:1946#include "ipc/ipc_sender.h"
mikhail.pozdnyakovc0e251b2015-04-15 06:51:1247#include "third_party/WebKit/public/platform/WebDisplayMode.h"
dtapuska7f4ddc2a2016-10-13 16:09:3248#include "third_party/WebKit/public/platform/WebInputEvent.h"
[email protected]5c30b5e02013-05-30 03:46:0849#include "third_party/WebKit/public/platform/WebRect.h"
paulmeyer6ef5a792016-11-08 20:33:5850#include "third_party/WebKit/public/platform/WebReferrerPolicy.h"
dtapuska7f4ddc2a2016-10-13 16:09:3251#include "third_party/WebKit/public/platform/WebTextInputInfo.h"
[email protected]2255a9332013-06-17 05:12:3152#include "third_party/WebKit/public/web/WebCompositionUnderline.h"
53#include "third_party/WebKit/public/web/WebPopupType.h"
54#include "third_party/WebKit/public/web/WebTextDirection.h"
[email protected]0e45bd02013-07-12 20:20:0255#include "third_party/WebKit/public/web/WebWidget.h"
[email protected]2255a9332013-06-17 05:12:3156#include "third_party/WebKit/public/web/WebWidgetClient.h"
[email protected]b256eca2013-07-11 10:57:4057#include "ui/base/ime/text_input_mode.h"
[email protected]ad26ef42011-06-17 07:59:4558#include "ui/base/ime/text_input_type.h"
[email protected]a09d53ce2014-01-31 00:46:4259#include "ui/base/ui_base_types.h"
tfarina93bfa912014-12-05 14:23:1560#include "ui/gfx/geometry/rect.h"
tfarina93bfa912014-12-05 14:23:1561#include "ui/gfx/geometry/vector2d_f.h"
[email protected]08397d52011-02-05 01:53:3862#include "ui/gfx/native_widget_types.h"
[email protected]db4fc1e2013-09-06 20:01:5163#include "ui/gfx/range/range.h"
[email protected]d353541f2012-05-03 22:45:4164#include "ui/surface/transport_dib.h"
initial.commit09911bf2008-07-26 23:55:2965
danakj870925d2016-05-03 20:07:3866class GURL;
67
[email protected]484955942010-08-19 16:13:1868namespace IPC {
[email protected]586871b2014-07-22 17:05:1169class SyncMessageFilter;
[email protected]484955942010-08-19 16:13:1870}
71
[email protected]180ef242013-11-07 06:50:4672namespace blink {
skyostil529caa292016-08-10 17:44:5173namespace scheduler {
74class RenderWidgetSchedulingState;
75}
wjmaclean1d970622017-01-21 22:28:2476struct WebActiveWheelFlingParameters;
[email protected]19193682014-04-03 15:01:4377struct WebDeviceEmulationParams;
paulmeyer6ef5a792016-11-08 20:33:5878class WebDragData;
lfgcaab5142016-02-26 19:06:5279class WebFrameWidget;
[email protected]41d86852012-11-07 12:23:2480class WebGestureEvent;
paulmeyer6ef5a792016-11-08 20:33:5881class WebImage;
ekaramad2daaf672016-11-10 20:29:0182class WebInputMethodController;
kenrba7199832015-01-22 23:44:5983class WebLocalFrame;
[email protected]6a8ddba52010-09-05 04:38:0684class WebMouseEvent;
donnda070f3c2015-01-16 19:54:1185class WebNode;
86struct WebPoint;
pwnallef669312017-01-07 01:17:2987} // namespace blink
[email protected]526476902011-10-06 20:34:0688
[email protected]586871b2014-07-22 17:05:1189namespace cc {
[email protected]586871b2014-07-22 17:05:1190class SwapPromise;
91}
[email protected]ba91a792013-02-06 09:48:2892
[email protected]db4fc1e2013-09-06 20:01:5193namespace gfx {
[email protected]4de6d1692011-10-12 08:45:4494class Range;
95}
96
chongza8ba91fc2016-08-16 21:39:1797namespace ui {
98struct DidOverscrollParams;
99}
100
[email protected]e9ff79c2012-10-19 21:31:26101namespace content {
danakj6e3bf8012014-12-16 18:27:53102class CompositorDependencies;
[email protected]b2e4c70132013-10-03 02:07:51103class ExternalPopupMenu;
[email protected]586871b2014-07-22 17:05:11104class FrameSwapMessageQueue;
changwanf2a707b2015-10-30 08:22:16105class ImeEventGuard;
dtapuska9ec1a912017-04-21 15:18:31106class MainThreadEventQueue;
ekaramad2a46d632016-07-19 13:33:09107class PepperPluginInstanceImpl;
[email protected]bffc8302014-01-23 20:52:16108class RenderFrameImpl;
[email protected]e3244ed2014-06-20 20:04:27109class RenderFrameProxy;
nickf7b38222016-11-22 21:59:35110class RenderViewImpl;
[email protected]ba91a792013-02-06 09:48:28111class RenderWidgetCompositor;
avi40b5be7a2016-03-03 21:13:44112class RenderWidgetOwnerDelegate;
mfomitchev2600fd7c2016-02-17 20:53:39113class RenderWidgetScreenMetricsEmulator;
[email protected]5b45ad42013-10-25 00:42:04114class ResizingModeSelector;
ekaramad330ba4232016-09-23 17:57:47115class TextInputClientObserver;
[email protected]b2e4c70132013-10-03 02:07:51116struct ContextMenuParams;
fsamuel664e8b62016-01-20 19:54:01117struct ResizeParams;
[email protected]e9ff79c2012-10-19 21:31:26118
initial.commit09911bf2008-07-26 23:55:29119// RenderWidget provides a communication bridge between a WebWidget and
120// a RenderWidgetHost, the latter of which lives in a different process.
dchengd96a27a2015-07-24 20:17:32121//
122// RenderWidget is used to implement:
123// - RenderViewImpl (deprecated)
124// - Fullscreen mode (RenderWidgetFullScreen)
125// - Popup "menus" (like the color chooser and date picker)
126// - Widgets for frames (for out-of-process iframe support)
[email protected]f3112a52011-09-30 23:47:49127class CONTENT_EXPORT RenderWidget
[email protected]c47317e2012-06-20 22:35:31128 : public IPC::Listener,
129 public IPC::Sender,
[email protected]180ef242013-11-07 06:50:46130 NON_EXPORTED_BASE(virtual public blink::WebWidgetClient),
fsamuel78f86e42016-01-20 04:10:23131 public RenderWidgetCompositorDelegate,
fsamuel72464894f2015-12-15 06:59:31132 public RenderWidgetInputHandlerDelegate,
mfomitchev2600fd7c2016-02-17 20:53:39133 public RenderWidgetScreenMetricsEmulatorDelegate,
dtapuska9ec1a912017-04-21 15:18:31134 public base::RefCounted<RenderWidget>,
135 public MainThreadEventQueueClient {
initial.commit09911bf2008-07-26 23:55:29136 public:
nickf7b38222016-11-22 21:59:35137 // Creates a new RenderWidget for a popup. |opener| is the RenderView that
138 // this widget lives inside.
139 static RenderWidget* CreateForPopup(RenderViewImpl* opener,
140 CompositorDependencies* compositor_deps,
141 blink::WebPopupType popup_type,
142 const ScreenInfo& screen_info);
initial.commit09911bf2008-07-26 23:55:29143
kenrba7199832015-01-22 23:44:59144 // Creates a new RenderWidget that will be attached to a RenderFrame.
nick4df698d82016-11-11 20:39:23145 static RenderWidget* CreateForFrame(int widget_routing_id,
kenrba7199832015-01-22 23:44:59146 bool hidden,
ccameron2f451532016-09-07 21:49:27147 const ScreenInfo& screen_info,
kenrba7199832015-01-22 23:44:59148 CompositorDependencies* compositor_deps,
149 blink::WebLocalFrame* frame);
150
lfg1568d112016-08-30 16:06:29151 // Used by content_layouttest_support to hook into the creation of
152 // RenderWidgets.
nick8331f8ad2016-11-15 20:42:45153 using CreateRenderWidgetFunction = RenderWidget* (*)(int32_t,
154 CompositorDependencies*,
155 blink::WebPopupType,
156 const ScreenInfo&,
157 bool,
158 bool,
159 bool);
lfg1568d112016-08-30 16:06:29160 using RenderWidgetInitializedCallback = void (*)(RenderWidget*);
nickf7b38222016-11-22 21:59:35161 using ShowCallback = base::Callback<void(RenderWidget* widget_to_show,
162 blink::WebNavigationPolicy policy,
163 const gfx::Rect& initial_rect)>;
lfg1568d112016-08-30 16:06:29164 static void InstallCreateHook(
165 CreateRenderWidgetFunction create_render_widget,
166 RenderWidgetInitializedCallback render_widget_initialized_callback);
167
dchengda9b4bb2015-07-20 20:58:08168 // Closes a RenderWidget that was created by |CreateForFrame|.
dcheng3ce04b62015-10-26 23:30:55169 // TODO(avi): De-virtualize this once RenderViewImpl has-a RenderWidget.
170 // https://crbug.com/545684
171 virtual void CloseForFrame();
[email protected]484955942010-08-19 16:13:18172
nick8331f8ad2016-11-15 20:42:45173 int32_t routing_id() const { return routing_id_; }
fsamuele8326c742016-01-12 00:49:39174
danakj6e3bf8012014-12-16 18:27:53175 CompositorDependencies* compositor_deps() const { return compositor_deps_; }
lfg8ff33912016-09-13 20:59:21176 virtual blink::WebWidget* GetWebWidget() const;
ekaramad2daaf672016-11-10 20:29:01177
178 // Returns the current instance of WebInputMethodController which is to be
179 // used for IME related tasks. This instance corresponds to the one from
180 // focused frame and can be nullptr.
181 blink::WebInputMethodController* GetInputMethodController() const;
182
mfomitchev2600fd7c2016-02-17 20:53:39183 const gfx::Size& size() const { return size_; }
mikhail.pozdnyakovf2c902a2015-04-14 08:09:12184 bool is_fullscreen_granted() const { return is_fullscreen_granted_; }
mikhail.pozdnyakovc0e251b2015-04-15 06:51:12185 blink::WebDisplayMode display_mode() const { return display_mode_; }
[email protected]204f1df2012-01-04 20:21:13186 bool is_hidden() const { return is_hidden_; }
[email protected]4ee64622014-03-21 22:34:15187 // Temporary for debugging purposes...
188 bool closing() const { return closing_; }
pwnallef669312017-01-07 01:17:29189 bool has_host_context_menu_location() const {
[email protected]be1af0662014-07-29 19:55:51190 return has_host_context_menu_location_;
191 }
pwnallef669312017-01-07 01:17:29192 gfx::Point host_context_menu_location() const {
[email protected]be1af0662014-07-29 19:55:51193 return host_context_menu_location_;
[email protected]4ee64622014-03-21 22:34:15194 }
[email protected]589621b2010-09-23 22:01:07195
avi40b5be7a2016-03-03 21:13:44196 void set_owner_delegate(RenderWidgetOwnerDelegate* owner_delegate) {
197 DCHECK(!owner_delegate_);
198 owner_delegate_ = owner_delegate;
199 }
200
pwnallef669312017-01-07 01:17:29201 RenderWidgetOwnerDelegate* owner_delegate() const { return owner_delegate_; }
avi40b5be7a2016-03-03 21:13:44202
kenrba7199832015-01-22 23:44:59203 // ScreenInfo exposed so it can be passed to subframe RenderWidgets.
ccameron2f451532016-09-07 21:49:27204 ScreenInfo screen_info() const { return screen_info_; }
kenrba7199832015-01-22 23:44:59205
alexmos78c9c0d2016-10-14 18:57:03206 // Sets whether this RenderWidget has been swapped out to be displayed by
207 // a RenderWidget in a different process. If so, no new IPC messages will be
208 // sent (only ACKs) and the process is free to exit when there are no other
209 // active RenderWidgets.
210 void SetSwappedOut(bool is_swapped_out);
211
pwnallef669312017-01-07 01:17:29212 bool is_swapped_out() const { return is_swapped_out_; }
alexmos78c9c0d2016-10-14 18:57:03213
alexmos56567492016-09-13 00:52:46214 // Manage edit commands to be used for the next keyboard event.
215 const EditCommands& edit_commands() const { return edit_commands_; }
216 void SetEditCommandForNextKeyEvent(const std::string& name,
217 const std::string& value);
218 void ClearEditCommands();
219
[email protected]bffc8302014-01-23 20:52:16220 // Functions to track out-of-process frames for special notifications.
[email protected]e3244ed2014-06-20 20:04:27221 void RegisterRenderFrameProxy(RenderFrameProxy* proxy);
222 void UnregisterRenderFrameProxy(RenderFrameProxy* proxy);
[email protected]bffc8302014-01-23 20:52:16223
[email protected]de3c5d82014-05-28 22:12:59224 // Functions to track all RenderFrame objects associated with this
225 // RenderWidget.
226 void RegisterRenderFrame(RenderFrameImpl* frame);
227 void UnregisterRenderFrame(RenderFrameImpl* frame);
228
[email protected]c47317e2012-06-20 22:35:31229 // IPC::Listener
dcheng6d18e402014-10-21 12:32:52230 bool OnMessageReceived(const IPC::Message& msg) override;
initial.commit09911bf2008-07-26 23:55:29231
[email protected]c47317e2012-06-20 22:35:31232 // IPC::Sender
dcheng6d18e402014-10-21 12:32:52233 bool Send(IPC::Message* msg) override;
initial.commit09911bf2008-07-26 23:55:29234
fsamuel78f86e42016-01-20 04:10:23235 // RenderWidgetCompositorDelegate
236 void ApplyViewportDeltas(const gfx::Vector2dF& inner_delta,
237 const gfx::Vector2dF& outer_delta,
238 const gfx::Vector2dF& elastic_overscroll_delta,
239 float page_scale,
240 float top_controls_delta) override;
sahel1b47fda72017-03-28 17:03:07241 void RecordWheelAndTouchScrollingCount(bool has_scrolled_by_wheel,
242 bool has_scrolled_by_touch) override;
fsamuel78f86e42016-01-20 04:10:23243 void BeginMainFrame(double frame_time_sec) override;
danakjc7afae52017-06-20 21:12:41244 void RequestNewLayerTreeFrameSink(
fsamuelcf3002e2017-03-20 23:13:47245 bool fallback,
danakjc7afae52017-06-20 21:12:41246 const LayerTreeFrameSinkCallback& callback) override;
fsamuel78f86e42016-01-20 04:10:23247 void DidCommitAndDrawCompositorFrame() override;
248 void DidCommitCompositorFrame() override;
249 void DidCompletePageScaleAnimation() override;
danakj6c872fc02016-10-22 04:29:49250 void DidReceiveCompositorFrameAck() override;
fsamuel78f86e42016-01-20 04:10:23251 bool IsClosing() const override;
danakj53eccbc2016-03-02 22:51:07252 void RequestScheduleAnimation() override;
fsamuel78f86e42016-01-20 04:10:23253 void UpdateVisualState() override;
254 void WillBeginCompositorFrame() override;
jbroman6ccbc7d472016-07-27 04:45:41255 std::unique_ptr<cc::SwapPromise> RequestCopyOfOutputForLayoutTest(
256 std::unique_ptr<cc::CopyOutputRequest> request) override;
fsamuel78f86e42016-01-20 04:10:23257
fsamuel72464894f2015-12-15 06:59:31258 // RenderWidgetInputHandlerDelegate
259 void FocusChangeComplete() override;
260 bool HasTouchEventHandlersAt(const gfx::Point& point) const override;
dtapuska1827dd22016-03-11 15:24:59261 void ObserveGestureEventAndResult(const blink::WebGestureEvent& gesture_event,
262 const gfx::Vector2dF& unused_delta,
263 bool event_processed) override;
264
fsamuel72464894f2015-12-15 06:59:31265 void OnDidHandleKeyEvent() override;
chongza8ba91fc2016-08-16 21:39:17266 void OnDidOverscroll(const ui::DidOverscrollParams& params) override;
fsamuele8326c742016-01-12 00:49:39267 void SetInputHandler(RenderWidgetInputHandler* input_handler) override;
changwan75e3b2072017-01-16 02:55:00268 void ShowVirtualKeyboard() override;
269 void UpdateTextInputState() override;
changwan62f57292017-02-17 08:28:25270 void ClearTextInputState() override;
fsamuel72464894f2015-12-15 06:59:31271 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override;
272 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override;
273
mfomitchev2600fd7c2016-02-17 20:53:39274 // RenderWidgetScreenMetricsDelegate
275 void Redraw() override;
276 void Resize(const ResizeParams& resize_params) override;
277 void SetScreenMetricsEmulationParameters(
278 bool enabled,
279 const blink::WebDeviceEmulationParams& params) override;
280 void SetScreenRects(const gfx::Rect& view_screen_rect,
281 const gfx::Rect& window_screen_rect) override;
282
[email protected]180ef242013-11-07 06:50:46283 // blink::WebWidgetClient
Blink Reformat1c4d759e2017-04-09 16:34:54284 blink::WebLayerTreeView* InitializeLayerTreeView() override;
285 void DidMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override;
286 void DidChangeCursor(const blink::WebCursorInfo&) override;
aelias5971e47d2017-06-16 02:39:38287 void AutoscrollStart(const blink::WebFloatPoint& point) override;
288 void AutoscrollFling(const blink::WebFloatSize& velocity) override;
289 void AutoscrollEnd() override;
Blink Reformat1c4d759e2017-04-09 16:34:54290 void CloseWidgetSoon() override;
291 void Show(blink::WebNavigationPolicy) override;
292 blink::WebRect WindowRect() override;
293 blink::WebRect ViewRect() override;
294 void SetToolTipText(const blink::WebString& text,
avi5c77d212015-09-25 20:08:25295 blink::WebTextDirection hint) override;
Blink Reformat1c4d759e2017-04-09 16:34:54296 void SetWindowRect(const blink::WebRect&) override;
297 blink::WebScreenInfo GetScreenInfo() override;
298 void DidHandleGestureEvent(const blink::WebGestureEvent& event,
avi5c77d212015-09-25 20:08:25299 bool event_cancelled) override;
Blink Reformat1c4d759e2017-04-09 16:34:54300 void DidOverscroll(const blink::WebFloatSize& overscrollDelta,
bokane53a10f2016-04-13 23:48:31301 const blink::WebFloatSize& accumulatedOverscroll,
avi5c77d212015-09-25 20:08:25302 const blink::WebFloatPoint& position,
303 const blink::WebFloatSize& velocity) override;
Blink Reformat1c4d759e2017-04-09 16:34:54304 void ShowVirtualKeyboardOnElementFocus() override;
305 void ConvertViewportToWindow(blink::WebRect* rect) override;
306 void ConvertWindowToViewport(blink::WebFloatRect* rect) override;
307 bool RequestPointerLock() override;
308 void RequestPointerUnlock() override;
309 bool IsPointerLocked() override;
310 void StartDragging(blink::WebReferrerPolicy policy,
paulmeyer6ef5a792016-11-08 20:33:58311 const blink::WebDragData& data,
312 blink::WebDragOperationsMask mask,
313 const blink::WebImage& image,
314 const blink::WebPoint& imageOffset) override;
[email protected]4873c7d2009-07-16 06:36:28315
fsamuel72464894f2015-12-15 06:59:31316 // Override point to obtain that the current input method state and caret
317 // position.
318 virtual ui::TextInputType GetTextInputType();
fsamuel72464894f2015-12-15 06:59:31319
donnda070f3c2015-01-16 19:54:11320#if defined(OS_ANDROID)
321 // Notifies that a tap was not consumed, so showing a UI for the unhandled
322 // tap may be needed.
donnd57e54f52015-02-26 19:03:37323 // Performs various checks on the given WebNode to apply heuristics to
324 // determine if triggering is appropriate.
Blink Reformat1c4d759e2017-04-09 16:34:54325 void ShowUnhandledTapUIIfNeeded(const blink::WebPoint& tapped_position,
avi5c77d212015-09-25 20:08:25326 const blink::WebNode& tapped_node,
327 bool page_changed) override;
donnda070f3c2015-01-16 19:54:11328#endif
329
[email protected]7912e822014-04-16 02:37:03330 // Begins the compositor's scheduler to start producing frames.
331 void StartCompositor();
332
[email protected]aeeedad2014-08-22 18:16:22333 // Stop compositing.
ennef3c58142014-12-09 21:44:38334 void WillCloseLayerTreeView();
[email protected]aeeedad2014-08-22 18:16:22335
[email protected]24ed0432013-04-24 07:50:31336 RenderWidgetCompositor* compositor() const;
337
fsamuel72464894f2015-12-15 06:59:31338 const RenderWidgetInputHandler& input_handler() const {
fsamuele8326c742016-01-12 00:49:39339 return *input_handler_;
fsamuel72464894f2015-12-15 06:59:31340 }
341
342 void SetHandlingInputEventForTesting(bool handling_input_event);
343
[email protected]79fa22e2013-08-23 15:18:12344 // Callback for use with synthetic gestures (e.g. BeginSmoothScroll).
345 typedef base::Callback<void()> SyntheticGestureCompletionCallback;
[email protected]0e241b4b2012-08-18 09:06:27346
[email protected]9017d7852013-11-21 17:47:35347 // Send a synthetic gesture to the browser to be queued to the synthetic
348 // gesture controller.
349 void QueueSyntheticGesture(
dchengcedca5612016-04-09 01:40:15350 std::unique_ptr<SyntheticGestureParams> gesture_params,
[email protected]9017d7852013-11-21 17:47:35351 const SyntheticGestureCompletionCallback& callback);
[email protected]1e1dd182013-09-12 01:51:15352
[email protected]586871b2014-07-22 17:05:11353 // Deliveres |message| together with compositor state change updates. The
354 // exact behavior depends on |policy|.
355 // This mechanism is not a drop-in replacement for IPC: messages sent this way
356 // will not be automatically available to BrowserMessageFilter, for example.
357 // FIFO ordering is preserved between messages enqueued with the same
358 // |policy|, the ordering between messages enqueued for different policies is
359 // undefined.
360 //
361 // |msg| message to send, ownership of |msg| is transferred.
362 // |policy| see the comment on MessageDeliveryPolicy.
363 void QueueMessage(IPC::Message* msg, MessageDeliveryPolicy policy);
364
changwanf2a707b2015-10-30 08:22:16365 // Handle start and finish of IME event guard.
366 void OnImeEventGuardStart(ImeEventGuard* guard);
367 void OnImeEventGuardFinish(ImeEventGuard* guard);
[email protected]66fca5bc2013-05-23 06:58:29368
mfomitchev2600fd7c2016-02-17 20:53:39369 void SetPopupOriginAdjustmentsForEmulation(
370 RenderWidgetScreenMetricsEmulator* emulator);
[email protected]b2e4c70132013-10-03 02:07:51371
[email protected]2d6836f42014-07-02 17:25:31372 gfx::Rect AdjustValidationMessageAnchor(const gfx::Rect& anchor);
[email protected]b2e4c70132013-10-03 02:07:51373
[email protected]7a4e2532013-12-02 21:30:02374 // Checks if the selection bounds have been changed. If they are changed,
375 // the new value will be sent to the browser process.
376 void UpdateSelectionBounds();
377
[email protected]e5e438d62014-03-27 21:47:16378 virtual void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end);
379
[email protected]a09d53ce2014-01-31 00:46:42380 void OnShowHostContextMenu(ContextMenuParams* params);
[email protected]7a4e2532013-12-02 21:30:02381
[email protected]7a4e2532013-12-02 21:30:02382 // Checks if the composition range or composition character bounds have been
383 // changed. If they are changed, the new value will be sent to the browser
yukawa5f21c6a2014-10-27 17:09:30384 // process. This method does nothing when the browser process is not able to
385 // handle composition range and composition character bounds.
nonafa291792016-08-10 02:36:18386 // If immediate_request is true, render sends the latest composition info to
387 // the browser even if the composition info is not changed.
388 void UpdateCompositionInfo(bool immediate_request);
[email protected]7a4e2532013-12-02 21:30:02389
lfgb00fcad2016-07-14 14:16:33390 // Called when the Widget has changed size as a result of an auto-resize.
391 void DidAutoResize(const gfx::Size& new_size);
392
lfge0c2792ec2016-05-11 18:52:08393 // Indicates whether this widget has focus.
394 bool has_focus() const { return has_focus_; }
395
pwnallef669312017-01-07 01:17:29396 MouseLockDispatcher* mouse_lock_dispatcher() const {
lfgbee1e0a2016-06-08 21:24:21397 return mouse_lock_dispatcher_.get();
398 }
399
ekaramad330ba4232016-09-23 17:57:47400 // TODO(ekaramad): The reference to the focused pepper plugin will be removed
401 // from RenderWidget. The purpose of having the reference here was to make IME
402 // work for OOPIF (https://crbug.com/643727).
ekaramad2a46d632016-07-19 13:33:09403 void set_focused_pepper_plugin(PepperPluginInstanceImpl* plugin) {
404 focused_pepper_plugin_ = plugin;
405 }
406
lfg1f9011c2016-08-17 21:18:42407 // When emulated, this returns original device scale factor.
408 float GetOriginalDeviceScaleFactor() const;
409
paulmeyer90f6c31d2016-11-12 00:17:59410 // Helper to convert |point| using ConvertWindowToViewport().
411 gfx::Point ConvertWindowPointToViewport(const gfx::Point& point);
412
wjmaclean1d970622017-01-21 22:28:24413 virtual void TransferActiveWheelFlingAnimation(
414 const blink::WebActiveWheelFlingParameters& params) {}
415
kenrb5d78b842017-03-06 21:06:01416 uint32_t GetContentSourceId();
417 void IncrementContentSourceId();
418
dtapuska9ec1a912017-04-21 15:18:31419 // MainThreadEventQueueClient overrides.
420
421 // Requests a BeginMainFrame callback from the compositor.
422 void SetNeedsMainFrame() override;
423
Dave Tapuskaea83d3bd2017-06-13 16:14:55424 void HandleInputEvent(const blink::WebCoalescedInputEvent& input_event,
425 const ui::LatencyInfo& latency_info,
426 HandledEventCallback callback) override;
dtapuska9ec1a912017-04-21 15:18:31427
dtapuska9d46ef7d2017-05-26 19:06:06428 scoped_refptr<MainThreadEventQueue> GetInputEventQueue();
429
initial.commit09911bf2008-07-26 23:55:29430 protected:
[email protected]8085dbc82008-09-26 22:53:44431 // Friend RefCounted so that the dtor can be non-public. Using this class
432 // without ref-counting is an error.
433 friend class base::RefCounted<RenderWidget>;
fsamuele8326c742016-01-12 00:49:39434
[email protected]7339cd22010-10-27 00:11:20435 // For unit tests.
[email protected]e9ff79c2012-10-19 21:31:26436 friend class RenderWidgetTest;
[email protected]8085dbc82008-09-26 22:53:44437
[email protected]61e2b3cc2012-03-02 16:13:34438 enum ResizeAck {
439 SEND_RESIZE_ACK,
440 NO_RESIZE_ACK,
441 };
442
nick8331f8ad2016-11-15 20:42:45443 RenderWidget(int32_t widget_routing_id,
444 CompositorDependencies* compositor_deps,
dcheng35d31c112015-07-22 00:17:36445 blink::WebPopupType popup_type,
ccameron2f451532016-09-07 21:49:27446 const ScreenInfo& screen_info,
[email protected]1ac10dca2013-08-20 20:47:04447 bool swapped_out,
[email protected]7912e822014-04-16 02:37:03448 bool hidden,
449 bool never_visible);
[email protected]ce2b28e2012-08-09 15:53:57450
dcheng6d18e402014-10-21 12:32:52451 ~RenderWidget() override;
initial.commit09911bf2008-07-26 23:55:29452
lfgcaab5142016-02-26 19:06:52453 static blink::WebFrameWidget* CreateWebFrameWidget(
454 RenderWidget* render_widget,
455 blink::WebLocalFrame* frame);
dchengda9b4bb2015-07-20 20:58:08456
457 // Creates a WebWidget based on the popup type.
458 static blink::WebWidget* CreateWebWidget(RenderWidget* render_widget);
459
nick4df698d82016-11-11 20:39:23460 // Called by Create() functions and subclasses to finish initialization.
nickf7b38222016-11-22 21:59:35461 // |show_callback| will be invoked once WebWidgetClient::show() occurs, and
462 // should be null if show() won't be triggered for this widget.
463 void Init(const ShowCallback& show_callback, blink::WebWidget* web_widget);
[email protected]484955942010-08-19 16:13:18464
[email protected]949b6592014-08-20 13:17:52465 // Allows the process to exit once the unload handler has finished, if there
466 // are no other active RenderWidgets.
467 void WasSwappedOut();
468
[email protected]2533ce12009-05-09 00:02:24469 void DoDeferredClose();
dgozmancf9039cd2015-04-06 12:01:31470 void NotifyOnClose();
dchengda9b4bb2015-07-20 20:58:08471
bokanc63441c2016-04-27 15:49:12472 gfx::Size GetSizeForWebWidget() const;
473 virtual void ResizeWebWidget();
474
dchengda9b4bb2015-07-20 20:58:08475 // Close the underlying WebWidget.
476 virtual void Close();
initial.commit09911bf2008-07-26 23:55:29477
[email protected]92650162013-10-30 03:31:02478 // Used to force the size of a window when running layout tests.
bokanc007c3a2015-02-03 07:15:56479 void SetWindowRectSynchronously(const gfx::Rect& new_window_rect);
thakis18e426412017-03-15 12:06:37480#if BUILDFLAG(USE_EXTERNAL_POPUP_MENU)
[email protected]b2e4c70132013-10-03 02:07:51481 void SetExternalPopupOriginAdjustmentsForEmulation(
mfomitchev2600fd7c2016-02-17 20:53:39482 ExternalPopupMenu* popup,
483 RenderWidgetScreenMetricsEmulator* emulator);
[email protected]53907862014-03-25 15:42:40484#endif
[email protected]61e2b3cc2012-03-02 16:13:34485
initial.commit09911bf2008-07-26 23:55:29486 // RenderWidget IPC message handlers
nzolghadr5d8596502017-01-23 22:59:35487 void OnHandleInputEvent(
488 const blink::WebInputEvent* event,
489 const std::vector<const blink::WebInputEvent*>& coalesced_events,
490 const ui::LatencyInfo& latency_info,
491 InputEventDispatchType dispatch_type);
[email protected]34202de2013-05-06 23:36:22492 void OnCursorVisibilityChange(bool is_visible);
[email protected]c084330e02013-04-27 01:08:15493 void OnMouseCaptureLost();
alexmos56567492016-09-13 00:52:46494 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands);
[email protected]c084330e02013-04-27 01:08:15495 virtual void OnSetFocus(bool enable);
naskoc288745f2015-05-01 22:54:21496 void OnClose();
[email protected]fc4404d2012-11-07 19:53:30497 void OnCreatingNewAck();
fsamuel664e8b62016-01-20 19:54:01498 virtual void OnResize(const ResizeParams& params);
dgozman9260b0a12015-03-16 13:45:20499 void OnEnableDeviceEmulation(const blink::WebDeviceEmulationParams& params);
500 void OnDisableDeviceEmulation();
[email protected]941e4552010-02-01 21:23:43501 virtual void OnWasHidden();
[email protected]3399dd822014-08-09 11:14:24502 virtual void OnWasShown(bool needs_repainting,
503 const ui::LatencyInfo& latency_info);
avi1023d012015-12-25 02:39:14504 void OnCreateVideoAck(int32_t video_id);
505 void OnUpdateVideoAck(int32_t video_id);
[email protected]2533ce12009-05-09 00:02:24506 void OnRequestMoveAck();
wjmacleanee244e02017-05-26 21:06:07507 // Request from browser to show context menu.
508 virtual void OnShowContextMenu(ui::MenuSourceType source_type,
509 const gfx::Point& location);
[email protected]56ea1a62011-05-30 07:05:57510 virtual void OnImeSetComposition(
[email protected]fcf75d42013-12-03 20:11:26511 const base::string16& text,
[email protected]180ef242013-11-07 06:50:46512 const std::vector<blink::WebCompositionUnderline>& underlines,
chongz7eb752802016-01-27 21:28:07513 const gfx::Range& replacement_range,
[email protected]fa7b1dc2010-06-23 17:53:04514 int selection_start,
515 int selection_end);
rlanday7efe2302017-01-11 00:14:28516 virtual void OnImeCommitText(
517 const base::string16& text,
518 const std::vector<blink::WebCompositionUnderline>& underlines,
519 const gfx::Range& replacement_range,
520 int relative_cursor_pos);
aelias87b8f7c2016-09-14 03:19:29521 virtual void OnImeFinishComposingText(bool keep_selection);
522
oshimad5279032015-12-16 18:22:33523 // Called when the device scale factor is changed, or the layer tree is
524 // initialized.
525 virtual void OnDeviceScaleFactorChanged();
526
[email protected]0bc1f572013-04-17 01:46:31527 void OnRepaint(gfx::Size size_to_paint);
[email protected]79fa22e2013-08-23 15:18:12528 void OnSyntheticGestureCompleted();
[email protected]180ef242013-11-07 06:50:46529 void OnSetTextDirection(blink::WebTextDirection direction);
[email protected]872ae5b2011-05-26 20:20:50530 void OnGetFPS();
[email protected]80ad8622012-11-07 16:33:03531 void OnUpdateScreenRects(const gfx::Rect& view_screen_rect,
532 const gfx::Rect& window_screen_rect);
lfgdb5c4ed2016-03-04 23:09:07533 void OnUpdateWindowScreenRect(const gfx::Rect& window_screen_rect);
kenrbea731792017-01-13 15:10:48534 void OnSetViewportIntersection(const gfx::Rect& viewport_intersection);
kenrb04323782017-06-23 01:23:32535 void OnSetIsInert(bool);
paulmeyer90f6c31d2016-11-12 00:17:59536 // Real data that is dragged is not included at DragEnter time.
537 void OnDragTargetDragEnter(
538 const std::vector<DropData::Metadata>& drop_meta_data,
539 const gfx::Point& client_pt,
540 const gfx::Point& screen_pt,
541 blink::WebDragOperationsMask operations_allowed,
542 int key_modifiers);
543 void OnDragTargetDragOver(const gfx::Point& client_pt,
544 const gfx::Point& screen_pt,
545 blink::WebDragOperationsMask operations_allowed,
546 int key_modifiers);
kenrb07c272802017-02-07 23:48:17547 void OnDragTargetDragLeave(const gfx::Point& client_point,
548 const gfx::Point& screen_point);
paulmeyer90f6c31d2016-11-12 00:17:59549 void OnDragTargetDrop(const DropData& drop_data,
550 const gfx::Point& client_pt,
551 const gfx::Point& screen_pt,
552 int key_modifiers);
paulmeyer8fc8ea92016-11-15 05:12:21553 void OnDragSourceEnded(const gfx::Point& client_point,
554 const gfx::Point& screen_point,
555 blink::WebDragOperation drag_operation);
556 void OnDragSourceSystemDragEnded();
[email protected]0d1ebed12013-08-05 22:01:13557
[email protected]adb362312014-06-28 06:04:24558#if defined(OS_ANDROID)
changwan8c342742016-02-26 00:53:39559 // Called by the browser process to update text input state.
560 void OnRequestTextInputStateUpdate();
[email protected]105dffb42013-02-20 03:46:21561#endif
[email protected]0d1ebed12013-08-05 22:01:13562
nonafa291792016-08-10 02:36:18563 // Called by the browser process to update the cursor and composition
ekaramadc9b70a72017-03-23 16:14:23564 // information by sending InputHostMsg_ImeCompositionRangeChanged. If
565 // |immediate_request| is true, an IPC is sent back with current state.
566 // When |monitor_update| is true, then RenderWidget will send the updates
567 // in each compositor frame when there are changes. Outside of compositor
568 // frame updates, a change in text selection might also lead to an update for
569 // composition info (when in monitor mode).
570 void OnRequestCompositionUpdates(bool immediate_request,
571 bool monitor_updates);
nonafa291792016-08-10 02:36:18572
[email protected]847a2582013-03-09 02:29:51573 // Notify the compositor about a change in viewport size. This should be
574 // used only with auto resize mode WebWidgets, as normal WebWidgets should
575 // go through OnResize.
[email protected]97e1bf72013-03-06 14:06:05576 void AutoResizeCompositor();
577
wjmaclean8a795f32016-08-11 23:49:58578 virtual void OnSetDeviceScaleFactor(float device_scale_factor);
[email protected]468ac582012-11-20 00:53:19579
lfg8d649cc2017-04-28 18:04:30580 void OnOrientationChange();
[email protected]fcdc5642014-05-09 14:32:24581
[email protected]29ed96a2012-02-04 18:12:16582 // Override points to notify derived classes that a paint has happened.
[email protected]0704ac32013-10-03 15:24:22583 // DidInitiatePaint happens when that has completed, and subsequent rendering
bmcquade1f070c52016-11-02 17:50:51584 // won't affect the painted content.
lfge0c2792ec2016-05-11 18:52:08585 virtual void DidInitiatePaint() {}
[email protected]a2f6bc112009-06-27 16:27:25586
[email protected]ed7defa2013-03-12 21:29:59587 virtual GURL GetURLForGraphicsContext3D();
[email protected]65225772011-05-12 21:10:24588
[email protected]bee16aab2009-08-26 15:55:03589 // Sets the "hidden" state of this widget. All accesses to is_hidden_ should
590 // use this method so that we can properly inform the RenderThread of our
591 // state.
592 void SetHidden(bool hidden);
593
[email protected]2b624c562011-10-27 22:58:26594 void DidToggleFullscreen();
595
[email protected]674741932009-02-04 23:44:46596 bool next_paint_is_resize_ack() const;
[email protected]674741932009-02-04 23:44:46597 void set_next_paint_is_resize_ack();
[email protected]674741932009-02-04 23:44:46598 void set_next_paint_is_repaint_ack();
[email protected]ec7dc112008-08-06 05:30:12599
[email protected]586871b2014-07-22 17:05:11600 // QueueMessage implementation extracted into a static method for easy
601 // testing.
dchengcedca5612016-04-09 01:40:15602 static std::unique_ptr<cc::SwapPromise> QueueMessageImpl(
[email protected]586871b2014-07-22 17:05:11603 IPC::Message* msg,
604 MessageDeliveryPolicy policy,
605 FrameSwapMessageQueue* frame_swap_message_queue,
606 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter,
[email protected]586871b2014-07-22 17:05:11607 int source_frame_number);
608
[email protected]58b48a0d2012-06-13 07:01:35609 // Override point to obtain that the current composition character bounds.
610 // In the case of surrogate pairs, the character is treated as two characters:
611 // the bounds for first character is actual one, and the bounds for second
612 // character is zero width rectangle.
613 virtual void GetCompositionCharacterBounds(
614 std::vector<gfx::Rect>* character_bounds);
615
[email protected]88dbe32f2013-06-20 23:31:36616 // Returns the range of the text that is being composed or the selection if
617 // the composition does not exist.
[email protected]db4fc1e2013-09-06 20:01:51618 virtual void GetCompositionRange(gfx::Range* range);
[email protected]88dbe32f2013-06-20 23:31:36619
[email protected]58b48a0d2012-06-13 07:01:35620 // Returns true if the composition range or composition character bounds
621 // should be sent to the browser process.
622 bool ShouldUpdateCompositionInfo(
[email protected]db4fc1e2013-09-06 20:01:51623 const gfx::Range& range,
[email protected]58b48a0d2012-06-13 07:01:35624 const std::vector<gfx::Rect>& bounds);
625
[email protected]ad26ef42011-06-17 07:59:45626 // Override point to obtain that the current input method state about
627 // composition text.
628 virtual bool CanComposeInline();
[email protected]56ea1a62011-05-30 07:05:57629
[email protected]2533ce12009-05-09 00:02:24630 // Set the pending window rect.
631 // Because the real render_widget is hosted in another process, there is
632 // a time period where we may have set a new window rect which has not yet
633 // been processed by the browser. So we maintain a pending window rect
634 // size. If JS code sets the WindowRect, and then immediately calls
635 // GetWindowRect() we'll use this pending window rect as the size.
[email protected]180ef242013-11-07 06:50:46636 void SetPendingWindowRect(const blink::WebRect& r);
[email protected]2533ce12009-05-09 00:02:24637
[email protected]ce6689f2013-03-29 12:52:55638 // Check whether the WebWidget has any touch event handlers registered.
Blink Reformat1c4d759e2017-04-09 16:34:54639 void HasTouchEventHandlers(bool has_handlers) override;
[email protected]ce6689f2013-03-29 12:52:55640
Dave Tapuskadfe486c12017-06-09 16:53:13641 // Called to update whether low latency input mode is enabled or not.
642 void SetNeedsLowLatencyInput(bool) override;
643
[email protected]5d0bbdfa92013-12-10 00:35:51644 // Tell the browser about the actions permitted for a new touch point.
xidachenfa0199e72017-05-11 11:34:26645 void SetTouchAction(cc::TouchAction touch_action) override;
[email protected]5d0bbdfa92013-12-10 00:35:51646
lfg43e08e62016-02-03 18:51:37647 // Sends an ACK to the browser process during the next compositor frame.
648 void OnWaitNextFrameForTests(int routing_id);
649
initial.commit09911bf2008-07-26 23:55:29650 // Routing ID that allows us to communicate to the parent browser process
nick8331f8ad2016-11-15 20:42:45651 // RenderWidgetHost.
652 const int32_t routing_id_;
initial.commit09911bf2008-07-26 23:55:29653
danakj6e3bf8012014-12-16 18:27:53654 // Dependencies for initializing a compositor, including flags for optional
655 // features.
dcheng35d31c112015-07-22 00:17:36656 CompositorDependencies* const compositor_deps_;
danakj6e3bf8012014-12-16 18:27:53657
lfg8ff33912016-09-13 20:59:21658 // Use GetWebWidget() instead of using webwidget_internal_ directly.
[email protected]c5b3b5e2009-02-13 06:41:11659 // We are responsible for destroying this object via its Close method.
[email protected]4ee64622014-03-21 22:34:15660 // May be NULL when the window is closing.
lfg8ff33912016-09-13 20:59:21661 blink::WebWidget* webwidget_internal_;
initial.commit09911bf2008-07-26 23:55:29662
avi40b5be7a2016-03-03 21:13:44663 // The delegate of the owner of this object.
664 RenderWidgetOwnerDelegate* owner_delegate_;
665
[email protected]8926c602013-01-23 05:32:06666 // This is lazily constructed and must not outlive webwidget_.
dchengcedca5612016-04-09 01:40:15667 std::unique_ptr<RenderWidgetCompositor> compositor_;
[email protected]8926c602013-01-23 05:32:06668
bokanc007c3a2015-02-03 07:15:56669 // The rect where this view should be initially shown.
670 gfx::Rect initial_rect_;
initial.commit09911bf2008-07-26 23:55:29671
initial.commit09911bf2008-07-26 23:55:29672 // We store the current cursor object so we can avoid spamming SetCursor
673 // messages.
674 WebCursor current_cursor_;
[email protected]88efb7ec2009-07-14 16:32:59675
initial.commit09911bf2008-07-26 23:55:29676 // The size of the RenderWidget.
677 gfx::Size size_;
678
[email protected]60d47ac2013-03-01 23:42:44679 // The size of the view's backing surface in non-DPI-adjusted pixels.
680 gfx::Size physical_backing_size_;
681
[email protected]bb6378fe2014-04-28 21:19:44682 // The size of the visible viewport in DPI-adjusted pixels.
683 gfx::Size visible_viewport_size_;
684
[email protected]53d3f302009-12-21 04:42:05685 // Flags for the next ViewHostMsg_UpdateRect message.
initial.commit09911bf2008-07-26 23:55:29686 int next_paint_flags_;
687
[email protected]847a2582013-03-09 02:29:51688 // Whether the WebWidget is in auto resize mode, which is used for example
689 // by extension popups.
690 bool auto_resize_mode_;
691
[email protected]ea3ee0a2012-05-15 03:43:09692 // True if we need to send an UpdateRect message to notify the browser about
693 // an already-completed auto-resize.
694 bool need_update_rect_for_auto_resize_;
695
initial.commit09911bf2008-07-26 23:55:29696 // Set to true if we should ignore RenderWidget::Show calls.
697 bool did_show_;
698
699 // Indicates that we shouldn't bother generated paint events.
700 bool is_hidden_;
701
[email protected]7912e822014-04-16 02:37:03702 // Indicates that we are never visible, so never produce graphical output.
sievers71c62dd52015-10-07 01:44:39703 const bool compositor_never_visible_;
[email protected]7912e822014-04-16 02:37:03704
mikhail.pozdnyakovf2c902a2015-04-14 08:09:12705 // Indicates whether tab-initiated fullscreen was granted.
706 bool is_fullscreen_granted_;
[email protected]ee41e7d22011-10-14 19:34:09707
mikhail.pozdnyakovc0e251b2015-04-15 06:51:12708 // Indicates the display mode.
709 blink::WebDisplayMode display_mode_;
710
changwanf2a707b2015-10-30 08:22:16711 // It is possible that one ImeEventGuard is nested inside another
712 // ImeEventGuard. We keep track of the outermost one, and update it as needed.
713 ImeEventGuard* ime_event_guard_;
[email protected]e8f775f2013-02-14 21:00:50714
initial.commit09911bf2008-07-26 23:55:29715 // True if we have requested this widget be closed. No more messages will
716 // be sent, except for a Close.
717 bool closing_;
718
[email protected]aeeedad2014-08-22 18:16:22719 // True if it is known that the host is in the process of being shut down.
720 bool host_closing_;
721
[email protected]992db4c2011-05-12 15:37:15722 // Whether this RenderWidget is currently swapped out, such that the view is
723 // being rendered by another process. If all RenderWidgets in a process are
724 // swapped out, the process can exit.
725 bool is_swapped_out_;
726
simonhong628f9812015-04-27 23:13:20727 // Whether this RenderWidget is for an out-of-process iframe or not.
728 bool for_oopif_;
729
[email protected]5b739cb2012-08-21 20:35:21730 // Stores information about the current text input.
[email protected]180ef242013-11-07 06:50:46731 blink::WebTextInputInfo text_input_info_;
[email protected]5b739cb2012-08-21 20:35:21732
dglazkov97b6c2b2016-10-25 17:35:55733 // Stores the current text input type of |webwidget_|.
734 ui::TextInputType text_input_type_;
735
[email protected]b256eca2013-07-11 10:57:40736 // Stores the current text input mode of |webwidget_|.
737 ui::TextInputMode text_input_mode_;
738
shuchen82ce8c52014-10-23 01:55:20739 // Stores the current text input flags of |webwidget_|.
740 int text_input_flags_;
741
[email protected]86ba5fcb2013-09-04 00:36:53742 // Stores the current type of composition text rendering of |webwidget_|.
743 bool can_compose_inline_;
744
[email protected]e99ef6f2011-10-16 01:13:00745 // Stores the current selection bounds.
[email protected]7c8873e2013-02-05 08:03:01746 gfx::Rect selection_focus_rect_;
747 gfx::Rect selection_anchor_rect_;
initial.commit09911bf2008-07-26 23:55:29748
[email protected]58b48a0d2012-06-13 07:01:35749 // Stores the current composition character bounds.
750 std::vector<gfx::Rect> composition_character_bounds_;
751
752 // Stores the current composition range.
[email protected]db4fc1e2013-09-06 20:01:51753 gfx::Range composition_range_;
[email protected]58b48a0d2012-06-13 07:01:35754
[email protected]3e2b375b2010-04-07 17:03:12755 // The kind of popup this widget represents, NONE if not a popup.
[email protected]180ef242013-11-07 06:50:46756 blink::WebPopupType popup_type_;
[email protected]0ebf3872008-11-07 21:35:03757
[email protected]80ad8622012-11-07 16:33:03758 // While we are waiting for the browser to update window sizes, we track the
759 // pending size temporarily.
[email protected]2533ce12009-05-09 00:02:24760 int pending_window_rect_count_;
lfg0140a452016-07-19 19:15:05761 gfx::Rect pending_window_rect_;
[email protected]2533ce12009-05-09 00:02:24762
[email protected]80ad8622012-11-07 16:33:03763 // The screen rects of the view and the window that contains it.
764 gfx::Rect view_screen_rect_;
765 gfx::Rect window_screen_rect_;
766
dchengcedca5612016-04-09 01:40:15767 std::unique_ptr<RenderWidgetInputHandler> input_handler_;
[email protected]12fbad812009-09-01 18:21:24768
[email protected]fd847792013-10-24 17:12:35769 // The time spent in input handlers this frame. Used to throttle input acks.
770 base::TimeDelta total_input_handling_time_this_frame_;
771
[email protected]842f10652012-06-06 01:54:04772 // Properties of the screen hosting this RenderWidget instance.
ccameron2f451532016-09-07 21:49:27773 ScreenInfo screen_info_;
[email protected]842f10652012-06-06 01:54:04774
[email protected]f1cccb32012-06-06 18:29:59775 // The device scale factor. This value is computed from the DPI entries in
776 // |screen_info_| on some platforms, and defaults to 1 on other platforms.
[email protected]faec7b12012-06-19 14:42:13777 float device_scale_factor_;
[email protected]f1cccb32012-06-06 18:29:59778
[email protected]9017d7852013-11-21 17:47:35779 // State associated with synthetic gestures. Synthetic gestures are processed
780 // in-order, so a queue is sufficient to identify the correct state for a
781 // completed gesture.
782 std::queue<SyntheticGestureCompletionCallback>
783 pending_synthetic_gesture_callbacks_;
[email protected]0e241b4b2012-08-18 09:06:27784
nonafa291792016-08-10 02:36:18785 // True if the IME requests updated composition info.
786 bool monitor_composition_info_;
787
dchengcedca5612016-04-09 01:40:15788 std::unique_ptr<RenderWidgetScreenMetricsEmulator> screen_metrics_emulator_;
[email protected]b2e4c70132013-10-03 02:07:51789
790 // Popups may be displaced when screen metrics emulation is enabled.
791 // These values are used to properly adjust popup position.
danakj2ef31b82015-10-21 18:18:02792 gfx::Point popup_view_origin_for_emulation_;
793 gfx::Point popup_screen_origin_for_emulation_;
[email protected]b2e4c70132013-10-03 02:07:51794 float popup_origin_scale_for_emulation_;
795
[email protected]586871b2014-07-22 17:05:11796 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_;
dchengcedca5612016-04-09 01:40:15797 std::unique_ptr<ResizingModeSelector> resizing_mode_selector_;
[email protected]5b45ad42013-10-25 00:42:04798
[email protected]e3244ed2014-06-20 20:04:27799 // Lists of RenderFrameProxy objects that need to be notified of
800 // compositing-related events (e.g. DidCommitCompositorFrame).
brettw236d3172015-06-03 16:31:43801 base::ObserverList<RenderFrameProxy> render_frame_proxies_;
[email protected]bffc8302014-01-23 20:52:16802
[email protected]de3c5d82014-05-28 22:12:59803 // A list of RenderFrames associated with this RenderWidget. Notifications
804 // are sent to each frame in the list for events such as changing
805 // visibility state for example.
brettw236d3172015-06-03 16:31:43806 base::ObserverList<RenderFrameImpl> render_frames_;
[email protected]de3c5d82014-05-28 22:12:59807
[email protected]be1af0662014-07-29 19:55:51808 bool has_host_context_menu_location_;
809 gfx::Point host_context_menu_location_;
[email protected]a09d53ce2014-01-31 00:46:42810
skyostil529caa292016-08-10 17:44:51811 std::unique_ptr<blink::scheduler::RenderWidgetSchedulingState>
alexclarke7fa93942015-10-21 15:37:11812 render_widget_scheduling_state_;
813
lfgbee1e0a2016-06-08 21:24:21814 // Mouse Lock dispatcher attached to this view.
815 std::unique_ptr<RenderWidgetMouseLockDispatcher> mouse_lock_dispatcher_;
816
817 // Wraps the |webwidget_| as a MouseLockDispatcher::LockTarget interface.
818 std::unique_ptr<MouseLockDispatcher::LockTarget> webwidget_mouse_lock_target_;
819
wjmaclean1d970622017-01-21 22:28:24820 bool has_added_input_handler_;
821
oshima50872a72016-03-04 13:26:18822 private:
bokan841fdc72016-10-06 00:16:35823 // Applies/Removes the DevTools device emulation transformation to/from a
824 // window rect.
825 void ScreenRectToEmulatedIfNeeded(blink::WebRect* window_rect) const;
826 void EmulatedToScreenRectIfNeeded(blink::WebRect* window_rect) const;
827
dtapuska014ed082016-11-11 21:58:48828 bool CreateWidget(int32_t opener_id,
829 blink::WebPopupType popup_type,
830 int32_t* routing_id);
831
832 // A variant of Send but is fatal if it fails. The browser may
833 // be waiting for this IPC Message and if the send fails the browser will
834 // be left in a state waiting for something that never comes. And if it
835 // never comes then it may later determine this is a hung renderer; so
836 // instead fail right away.
837 void SendOrCrash(IPC::Message* msg);
838
ekaramad5aff1942017-01-06 01:26:35839 // Determines whether or not RenderWidget should process IME events from the
840 // browser. It always returns true unless there is no WebFrameWidget to
841 // handle the event, or there is no page focus.
842 bool ShouldHandleImeEvents() const;
843
changwan75e3b2072017-01-16 02:55:00844 void UpdateTextInputStateInternal(bool show_virtual_keyboard,
845 bool reply_to_request);
846
ccameron01912992017-05-23 07:34:03847 gfx::ColorSpace GetRasterColorSpace() const;
848
Dave Tapuskaea83d3bd2017-06-13 16:14:55849 void SendInputEventAck(blink::WebInputEvent::Type type,
850 uint32_t touch_event_id,
851 InputEventAckState ack_state,
852 const ui::LatencyInfo& latency_info,
853 std::unique_ptr<ui::DidOverscrollParams>);
854
lfge0c2792ec2016-05-11 18:52:08855 // Indicates whether this widget has focus.
856 bool has_focus_;
857
nickf7b38222016-11-22 21:59:35858 // A callback into the creator/opener of this widget, to be executed when
859 // WebWidgetClient::show() occurs.
860 ShowCallback show_callback_;
861
ekaramad330ba4232016-09-23 17:57:47862#if defined(OS_MACOSX)
863 // Responds to IPCs from TextInputClientMac regarding getting string at given
864 // position or range as well as finding character index at a given position.
865 std::unique_ptr<TextInputClientObserver> text_input_client_observer_;
866#endif
867
ekaramad2a46d632016-07-19 13:33:09868 // This reference is set by the RenderFrame and is used to query the IME-
869 // related state from the plugin to later send to the browser.
870 PepperPluginInstanceImpl* focused_pepper_plugin_;
871
alexmos56567492016-09-13 00:52:46872 // Stores edit commands associated to the next key event.
873 // Will be cleared as soon as the next key event is processed.
874 EditCommands edit_commands_;
875
paulmeyer6ef5a792016-11-08 20:33:58876 // This field stores drag/drop related info for the event that is currently
877 // being handled. If the current event results in starting a drag/drop
878 // session, this info is sent to the browser along with other drag/drop info.
879 DragEventSourceInfo possible_drag_event_info_;
880
tasakb95dbb50c2017-02-08 18:07:50881 bool time_to_first_active_paint_recorded_;
882 base::TimeTicks was_shown_time_;
883
kenrb5d78b842017-03-06 21:06:01884 // This is initialized to zero and is incremented on each non-same-page
885 // navigation commit by RenderFrameImpl. At that time it is sent to the
886 // compositor so that it can tag compositor frames, and RenderFrameImpl is
887 // responsible for sending it to the browser process to be used to match
888 // each compositor frame to the most recent page navigation before it was
889 // generated.
890 // This only applies to main frames, and is not touched for subframe
891 // RenderWidgets, where there is no concern around displaying unloaded
892 // content.
893 // TODO(kenrb, fsamuel): This should be removed when SurfaceIDs can be used
894 // to replace it. See https://crbug.com/695579.
895 uint32_t current_content_source_id_;
896
fsamuelca02c4e2017-05-09 13:34:14897 cc::LocalSurfaceId local_surface_id_;
898
dtapuska9ec1a912017-04-21 15:18:31899 scoped_refptr<MainThreadEventQueue> input_event_queue_;
900
wjmaclean1d970622017-01-21 22:28:24901 base::WeakPtrFactory<RenderWidget> weak_ptr_factory_;
902
[email protected]05d478752009-04-08 23:38:16903 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
initial.commit09911bf2008-07-26 23:55:29904};
905
[email protected]e9ff79c2012-10-19 21:31:26906} // namespace content
907
[email protected]2cff0052011-03-18 16:51:44908#endif // CONTENT_RENDERER_RENDER_WIDGET_H_