1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
#define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
#include <stddef.h>
#include <stdint.h>
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "base/callback.h"
#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/process/kill.h"
#include "build/build_config.h"
#include "content/browser/renderer_host/input/input_device_change_observer.h"
#include "content/browser/renderer_host/render_widget_host_impl.h"
#include "content/browser/renderer_host/render_widget_host_owner_delegate.h"
#include "content/browser/site_instance_impl.h"
#include "content/common/render_message_filter.mojom.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/render_process_host_observer.h"
#include "content/public/browser/render_view_host.h"
#include "net/base/load_states.h"
#include "third_party/blink/public/web/web_ax_enums.h"
#include "third_party/blink/public/web/web_console_message.h"
#include "third_party/blink/public/web/web_popup_type.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/base/mojo/window_open_disposition.mojom.h"
namespace content {
struct FrameReplicationState;
class TimeoutMonitor;
// This implements the RenderViewHost interface that is exposed to
// embedders of content, and adds things only visible to content.
//
// The exact API of this object needs to be more thoroughly designed. Right
// now it mimics what WebContentsImpl exposed, which is a fairly large API and
// may contain things that are not relevant to a common subset of views. See
// also the comment in render_view_host_delegate.h about the size and scope of
// the delegate API.
//
// Right now, the concept of page navigation (both top level and frame) exists
// in the WebContentsImpl still, so if you instantiate one of these elsewhere,
// you will not be able to traverse pages back and forward. We need to determine
// if we want to bring that and other functionality down into this object so it
// can be shared by others.
//
// DEPRECATED: RenderViewHostImpl is being removed as part of the SiteIsolation
// project. New code should not be added here, but to either RenderFrameHostImpl
// (if frame specific) or WebContentsImpl (if page specific).
//
// For context, please see https://crbug.com/467770 and
// https://www.chromium.org/developers/design-documents/site-isolation.
class CONTENT_EXPORT RenderViewHostImpl : public RenderViewHost,
public RenderWidgetHostOwnerDelegate,
public RenderProcessHostObserver,
public IPC::Listener {
public:
// Convenience function, just like RenderViewHost::FromID.
static RenderViewHostImpl* FromID(int process_id, int routing_id);
// Convenience function, just like RenderViewHost::From.
static RenderViewHostImpl* From(RenderWidgetHost* rwh);
RenderViewHostImpl(SiteInstance* instance,
std::unique_ptr<RenderWidgetHostImpl> widget,
RenderViewHostDelegate* delegate,
int32_t routing_id,
int32_t main_frame_routing_id,
bool swapped_out,
bool has_initialized_audio_host);
// TODO(ajwong): Make destructor private. Deletion of this object should only
// be done via ShutdownAndDestroy(). https://crbug.com/545684
~RenderViewHostImpl() override;
// Shuts down this RenderViewHost and deletes it.
void ShutdownAndDestroy();
// RenderViewHost implementation.
bool Send(IPC::Message* msg) override;
RenderWidgetHostImpl* GetWidget() const override;
RenderProcessHost* GetProcess() const override;
int GetRoutingID() const override;
RenderFrameHost* GetMainFrame() override;
void DirectoryEnumerationFinished(
int request_id,
const std::vector<base::FilePath>& files) override;
void DisableScrollbarsForThreshold(const gfx::Size& size) override;
void EnablePreferredSizeMode() override;
void ExecutePluginActionAtLocation(
const gfx::Point& location,
const blink::WebPluginAction& action) override;
RenderViewHostDelegate* GetDelegate() const override;
SiteInstanceImpl* GetSiteInstance() const override;
bool IsRenderViewLive() const override;
void NotifyMoveOrResizeStarted() override;
void SetWebUIProperty(const std::string& name,
const std::string& value) override;
void SyncRendererPrefs() override;
WebPreferences GetWebkitPreferences() override;
void UpdateWebkitPreferences(const WebPreferences& prefs) override;
void OnWebkitPreferencesChanged() override;
void SelectWordAroundCaret() override;
// RenderProcessHostObserver implementation
void RenderProcessExited(RenderProcessHost* host,
const ChildProcessTerminationInfo& info) override;
void set_delegate(RenderViewHostDelegate* d) {
CHECK(d); // http://crbug.com/82827
delegate_ = d;
}
// Set up the RenderView child process. Virtual because it is overridden by
// TestRenderViewHost.
// The |opener_route_id| parameter indicates which RenderView created this
// (MSG_ROUTING_NONE if none).
// |window_was_created_with_opener| is true if this top-level frame was
// created with an opener. (The opener may have been closed since.)
// The |proxy_route_id| is only used when creating a RenderView in swapped out
// state.
// |devtools_frame_token| contains the devtools token for tagging requests and
// attributing them to the context frame.
// |replicated_frame_state| contains replicated data for the top-level frame,
// such as its name and sandbox flags.
virtual bool CreateRenderView(
int opener_frame_route_id,
int proxy_route_id,
const base::UnguessableToken& devtools_frame_token,
const FrameReplicationState& replicated_frame_state,
bool window_was_created_with_opener);
base::TerminationStatus render_view_termination_status() const {
return render_view_termination_status_;
}
// Tracks whether this RenderViewHost is in an active state (rather than
// pending swap out or swapped out), according to its main frame
// RenderFrameHost.
bool is_active() const { return is_active_; }
void SetIsActive(bool is_active);
// Tracks whether this RenderViewHost is swapped out, according to its main
// frame RenderFrameHost.
void set_is_swapped_out(bool is_swapped_out) {
is_swapped_out_ = is_swapped_out;
}
// TODO(creis): Remove as part of http://crbug.com/418265.
bool is_waiting_for_close_ack() const { return is_waiting_for_close_ack_; }
// Generate RenderViewCreated events for observers through the delegate.
// These events are only generated for active RenderViewHosts (which have a
// RenderFrameHost for the main frame) as well as inactive RenderViewHosts
// that have a pending main frame navigation; i.e., this is done only when
// GetMainFrame() is non-null.
//
// This function also ensures that a particular RenderViewHost never
// dispatches these events more than once. For example, if a RenderViewHost
// transitions from active to inactive after a cross-process navigation
// (where it no longer has a main frame RenderFrameHost), and then back to
// active after another cross-process navigation, this function will filter
// out the second notification.
//
// TODO(alexmos): Deprecate RenderViewCreated and remove this. See
// https://crbug.com/763548.
void DispatchRenderViewCreated();
// Tells the renderer process to run the page's unload handler.
// A ClosePage_ACK ack is sent back when the handler execution completes.
void ClosePage();
// Close the page ignoring whether it has unload events registers.
// This is called after the beforeunload and unload events have fired
// and the user has agreed to continue with closing the page.
void ClosePageIgnoringUnloadEvents();
// Tells the renderer view to focus the first (last if reverse is true) node.
void SetInitialFocus(bool reverse);
bool SuddenTerminationAllowed() const;
void set_sudden_termination_allowed(bool enabled) {
sudden_termination_allowed_ = enabled;
}
// Creates a new RenderWidget with the given route id. |popup_type| indicates
// if this widget is a popup and what kind of popup it is (select, autofill).
void CreateNewWidget(int32_t route_id,
mojom::WidgetPtr widget,
blink::WebPopupType popup_type);
// Creates a full screen RenderWidget.
void CreateNewFullscreenWidget(int32_t route_id, mojom::WidgetPtr widget);
// Send RenderViewReady to observers once the process is launched, but not
// re-entrantly.
void PostRenderViewReady();
void set_main_frame_routing_id(int routing_id) {
main_frame_routing_id_ = routing_id;
}
// Increases the refcounting on this RVH. This is done by the FrameTree on
// creation of a RenderFrameHost or RenderFrameProxyHost.
void increment_ref_count() { ++frames_ref_count_; }
// Decreases the refcounting on this RVH. This is done by the FrameTree on
// destruction of a RenderFrameHost or RenderFrameProxyHost.
void decrement_ref_count() { --frames_ref_count_; }
// Returns the refcount on this RVH, that is the number of RenderFrameHosts
// and RenderFrameProxyHosts currently using it.
int ref_count() { return frames_ref_count_; }
// NOTE: Do not add functions that just send an IPC message that are called in
// one or two places. Have the caller send the IPC message directly (unless
// the caller places are in different platforms, in which case it's better
// to keep them consistent).
protected:
// RenderWidgetHostOwnerDelegate overrides.
bool OnMessageReceived(const IPC::Message& msg) override;
void RenderWidgetDidInit() override;
void RenderWidgetWillSetIsLoading(bool is_loading) override;
void RenderWidgetGotFocus() override;
void RenderWidgetLostFocus() override;
void RenderWidgetDidForwardMouseEvent(
const blink::WebMouseEvent& mouse_event) override;
bool MayRenderWidgetForwardKeyboardEvent(
const NativeWebKeyboardEvent& key_event) override;
bool ShouldContributePriorityToProcess() override;
void RenderWidgetDidShutdown() override;
// IPC message handlers.
void OnShowView(int route_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_rect,
bool user_gesture);
void OnShowWidget(int route_id, const gfx::Rect& initial_rect);
void OnShowFullscreenWidget(int route_id);
void OnRenderProcessGone(int status, int error_code);
void OnUpdateTargetURL(const GURL& url);
void OnClose();
void OnRequestSetBounds(const gfx::Rect& bounds);
void OnDocumentAvailableInMainFrame(bool uses_temporary_zoom_level);
void OnDidContentsPreferredSizeChange(const gfx::Size& new_size);
void OnPasteFromSelectionClipboard();
void OnRouteCloseEvent();
void OnTakeFocus(bool reverse);
void OnClosePageACK();
void OnDidZoomURL(double zoom_level, const GURL& url);
void OnFocus();
private:
// TODO(nasko): Temporarily friend RenderFrameHostImpl, so we don't duplicate
// utility functions and state needed in both classes, while we move frame
// specific code away from this class.
friend class RenderFrameHostImpl;
friend class TestRenderViewHost;
FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, BasicRenderFrameHost);
FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, RoutingIdSane);
FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest,
CleanUpSwappedOutRVHOnProcessCrash);
FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest,
CloseWithPendingWhileUnresponsive);
FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest,
NavigateMainFrameToChildSite);
void RenderViewReady();
// Called by |close_timeout_| when the page closing timeout fires.
void ClosePageTimeout();
// TODO(creis): Move to a private namespace on RenderFrameHostImpl.
// Delay to wait on closing the WebContents for a beforeunload/unload handler
// to fire.
static const int64_t kUnloadTimeoutMS;
// Returns the content specific prefs for this RenderViewHost.
// TODO(creis): Move most of this method to RenderProcessHost, since it's
// mostly the same across all RVHs in a process. Move the rest to RFH.
// See https://crbug.com/304341.
WebPreferences ComputeWebkitPrefs();
// The RenderWidgetHost.
std::unique_ptr<RenderWidgetHostImpl> render_widget_host_;
// The number of RenderFrameHosts which have a reference to this RVH.
int frames_ref_count_;
// Our delegate, which wants to know about changes in the RenderView.
RenderViewHostDelegate* delegate_;
// The SiteInstance associated with this RenderViewHost. All pages drawn
// in this RenderViewHost are part of this SiteInstance. Cannot change
// over time.
scoped_refptr<SiteInstanceImpl> instance_;
// Tracks whether this RenderViewHost is in an active state. False if the
// main frame is pending swap out, pending deletion, or swapped out, because
// it is not visible to the user in any of these cases.
bool is_active_;
// Tracks whether the main frame RenderFrameHost is swapped out. Unlike
// is_active_, this is false when the frame is pending swap out or deletion.
// TODO(creis): Remove this when we no longer filter IPCs after swap out.
// See https://crbug.com/745091.
bool is_swapped_out_;
// Routing ID for this RenderViewHost.
const int routing_id_;
// Routing ID for the main frame's RenderFrameHost.
int main_frame_routing_id_;
// Set to true when waiting for a ViewHostMsg_ClosePageACK.
// TODO(creis): Move to RenderFrameHost and RenderWidgetHost.
// See http://crbug.com/418265.
bool is_waiting_for_close_ack_;
// True if the render view can be shut down suddenly.
bool sudden_termination_allowed_;
// The termination status of the last render view that terminated.
base::TerminationStatus render_view_termination_status_;
// This is updated every time UpdateWebkitPreferences is called. That method
// is in turn called when any of the settings change that the WebPreferences
// values depend on.
std::unique_ptr<WebPreferences> web_preferences_;
// The timeout monitor that runs from when the page close is started in
// ClosePage() until either the render process ACKs the close with an IPC to
// OnClosePageACK(), or until the timeout triggers and the page is forcibly
// closed.
std::unique_ptr<TimeoutMonitor> close_timeout_;
// This monitors input changes so they can be reflected to the interaction MQ.
std::unique_ptr<InputDeviceChangeObserver> input_device_change_observer_;
bool updating_web_preferences_;
// This tracks whether this RenderViewHost has notified observers about its
// creation with RenderViewCreated. RenderViewHosts may transition from
// active (with a RenderFrameHost for the main frame) to inactive state and
// then back to active, and for the latter transition, this avoids firing
// duplicate RenderViewCreated events.
bool has_notified_about_creation_;
base::WeakPtrFactory<RenderViewHostImpl> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
};
} // namespace content
#endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
|