2017-02-10 23:44:11 +01:00
|
|
|
diff --git content/browser/web_contents/web_contents_impl.cc content/browser/web_contents/web_contents_impl.cc
|
2022-04-21 20:58:48 +02:00
|
|
|
index d0092176fd24a..a0d751db88136 100644
|
2017-02-10 23:44:11 +01:00
|
|
|
--- content/browser/web_contents/web_contents_impl.cc
|
|
|
|
+++ content/browser/web_contents/web_contents_impl.cc
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -3057,6 +3057,12 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params,
|
2022-01-25 21:26:51 +01:00
|
|
|
site_instance.get(), params.renderer_initiated_creation,
|
2022-04-21 20:58:48 +02:00
|
|
|
params.main_frame_name, GetOpener(), primary_main_frame_policy);
|
2021-03-04 23:36:57 +01:00
|
|
|
|
2017-02-10 23:44:11 +01:00
|
|
|
+ if (params.view && params.delegate_view) {
|
|
|
|
+ view_.reset(params.view);
|
|
|
|
+ render_view_host_delegate_view_ = params.delegate_view;
|
|
|
|
+ }
|
2021-03-04 23:36:57 +01:00
|
|
|
+
|
2018-02-02 22:28:03 +01:00
|
|
|
+ if (!view_) {
|
2020-10-08 21:54:42 +02:00
|
|
|
WebContentsViewDelegate* delegate =
|
|
|
|
GetContentClient()->browser()->GetWebContentsViewDelegate(this);
|
|
|
|
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -3067,6 +3073,7 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params,
|
2020-10-08 21:54:42 +02:00
|
|
|
view_.reset(CreateWebContentsView(this, delegate,
|
|
|
|
&render_view_host_delegate_view_));
|
2017-02-10 23:44:11 +01:00
|
|
|
}
|
2020-10-08 21:54:42 +02:00
|
|
|
+ }
|
2018-02-02 22:28:03 +01:00
|
|
|
CHECK(render_view_host_delegate_view_);
|
|
|
|
CHECK(view_.get());
|
2020-10-08 21:54:42 +02:00
|
|
|
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -3245,6 +3252,9 @@ void WebContentsImpl::RenderWidgetCreated(
|
2022-04-14 01:35:46 +02:00
|
|
|
OPTIONAL_TRACE_EVENT1("content", "WebContentsImpl::RenderWidgetCreated",
|
|
|
|
"render_widget_host", render_widget_host);
|
|
|
|
created_widgets_.insert(render_widget_host);
|
|
|
|
+
|
|
|
|
+ observers_.NotifyObservers(
|
|
|
|
+ &WebContentsObserver::RenderWidgetCreated, render_widget_host);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebContentsImpl::RenderWidgetDeleted(
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -3933,6 +3943,15 @@ FrameTree* WebContentsImpl::CreateNewWindow(
|
2019-11-12 17:11:44 +01:00
|
|
|
// objects.
|
|
|
|
create_params.renderer_initiated_creation = !is_new_browsing_instance;
|
2017-02-10 23:44:11 +01:00
|
|
|
|
|
|
|
+ if (delegate_) {
|
2017-03-15 23:04:16 +01:00
|
|
|
+ delegate_->GetCustomWebContentsView(this,
|
|
|
|
+ params.target_url,
|
|
|
|
+ render_process_id,
|
2017-05-31 17:33:30 +02:00
|
|
|
+ opener->GetRoutingID(),
|
2017-02-10 23:44:11 +01:00
|
|
|
+ &create_params.view,
|
|
|
|
+ &create_params.delegate_view);
|
|
|
|
+ }
|
|
|
|
+
|
2020-03-30 22:13:42 +02:00
|
|
|
std::unique_ptr<WebContentsImpl> new_contents;
|
|
|
|
if (!is_guest) {
|
|
|
|
create_params.context = view_->GetNativeView();
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -7787,6 +7806,9 @@ void WebContentsImpl::SetFocusedFrame(FrameTreeNode* node,
|
2022-01-24 17:13:32 +01:00
|
|
|
// frames).
|
|
|
|
SetFocusedFrameTree(node->frame_tree());
|
2020-02-10 18:10:17 +01:00
|
|
|
}
|
|
|
|
+
|
2022-01-24 17:13:32 +01:00
|
|
|
+ observers_.NotifyObservers(&WebContentsObserver::OnFrameFocused,
|
|
|
|
+ node->current_frame_host());
|
2019-11-12 17:11:44 +01:00
|
|
|
}
|
2017-02-10 23:44:11 +01:00
|
|
|
|
2022-01-24 17:13:32 +01:00
|
|
|
void WebContentsImpl::DidCallFocus() {
|
2017-02-10 23:44:11 +01:00
|
|
|
diff --git content/public/browser/web_contents.h content/public/browser/web_contents.h
|
2022-04-21 20:58:48 +02:00
|
|
|
index c062c66f596f5..8c9d5cd4d9af9 100644
|
2017-02-10 23:44:11 +01:00
|
|
|
--- content/public/browser/web_contents.h
|
|
|
|
+++ content/public/browser/web_contents.h
|
2022-02-21 23:23:40 +01:00
|
|
|
@@ -93,10 +93,12 @@ class BrowserContext;
|
2020-06-09 19:48:00 +02:00
|
|
|
class BrowserPluginGuestDelegate;
|
2017-02-10 23:44:11 +01:00
|
|
|
class RenderFrameHost;
|
|
|
|
class RenderViewHost;
|
|
|
|
+class RenderViewHostDelegateView;
|
|
|
|
class RenderWidgetHostView;
|
2021-06-04 03:34:56 +02:00
|
|
|
class ScreenOrientationDelegate;
|
|
|
|
class SiteInstance;
|
2017-02-10 23:44:11 +01:00
|
|
|
class WebContentsDelegate;
|
|
|
|
+class WebContentsView;
|
2020-03-30 22:13:42 +02:00
|
|
|
class WebUI;
|
2017-02-10 23:44:11 +01:00
|
|
|
struct DropData;
|
2021-03-04 23:36:57 +01:00
|
|
|
struct MHTMLGenerationParams;
|
2022-02-21 23:23:40 +01:00
|
|
|
@@ -234,6 +236,10 @@ class WebContents : public PageNavigator,
|
2021-12-16 23:35:54 +01:00
|
|
|
network::mojom::WebSandboxFlags starting_sandbox_flags =
|
|
|
|
network::mojom::WebSandboxFlags::kNone;
|
2018-07-02 19:11:49 +02:00
|
|
|
|
2017-02-10 23:44:11 +01:00
|
|
|
+ // Optionally specify the view and delegate view.
|
2021-12-16 23:35:54 +01:00
|
|
|
+ content::WebContentsView* view = nullptr;
|
|
|
|
+ content::RenderViewHostDelegateView* delegate_view = nullptr;
|
2018-07-02 19:11:49 +02:00
|
|
|
+
|
|
|
|
// Value used to set the last time the WebContents was made active, this is
|
|
|
|
// the value that'll be returned by GetLastActiveTime(). If this is left
|
|
|
|
// default initialized then the value is not passed on to the WebContents
|
2017-02-10 23:44:11 +01:00
|
|
|
diff --git content/public/browser/web_contents_delegate.h content/public/browser/web_contents_delegate.h
|
2022-04-21 20:58:48 +02:00
|
|
|
index 85335ff06c87e..2c88f03d95d52 100644
|
2017-02-10 23:44:11 +01:00
|
|
|
--- content/public/browser/web_contents_delegate.h
|
|
|
|
+++ content/public/browser/web_contents_delegate.h
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -57,9 +57,11 @@ class EyeDropperListener;
|
2019-11-12 17:11:44 +01:00
|
|
|
class FileSelectListener;
|
2017-02-10 23:44:11 +01:00
|
|
|
class JavaScriptDialogManager;
|
|
|
|
class RenderFrameHost;
|
|
|
|
+class RenderViewHostDelegateView;
|
|
|
|
class RenderWidgetHost;
|
|
|
|
class SessionStorageNamespace;
|
|
|
|
class SiteInstance;
|
|
|
|
+class WebContentsView;
|
|
|
|
struct ContextMenuParams;
|
|
|
|
struct DropData;
|
2020-04-14 21:31:00 +02:00
|
|
|
struct MediaPlayerWatchTime;
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -338,6 +340,14 @@ class CONTENT_EXPORT WebContentsDelegate {
|
2022-02-21 23:23:40 +01:00
|
|
|
const StoragePartitionConfig& partition_config,
|
2017-02-10 23:44:11 +01:00
|
|
|
SessionStorageNamespace* session_storage_namespace);
|
|
|
|
|
|
|
|
+ virtual void GetCustomWebContentsView(
|
|
|
|
+ WebContents* web_contents,
|
|
|
|
+ const GURL& target_url,
|
2017-03-15 23:04:16 +01:00
|
|
|
+ int opener_render_process_id,
|
|
|
|
+ int opener_render_frame_id,
|
2017-02-10 23:44:11 +01:00
|
|
|
+ content::WebContentsView** view,
|
|
|
|
+ content::RenderViewHostDelegateView** delegate_view) {}
|
|
|
|
+
|
|
|
|
// Notifies the delegate about the creation of a new WebContents. This
|
|
|
|
// typically happens when popups are created.
|
2017-07-27 01:19:27 +02:00
|
|
|
virtual void WebContentsCreated(WebContents* source_contents,
|
2020-02-10 18:10:17 +01:00
|
|
|
diff --git content/public/browser/web_contents_observer.h content/public/browser/web_contents_observer.h
|
2022-04-21 20:58:48 +02:00
|
|
|
index 9ee3b74460c00..c6497c7059d54 100644
|
2020-02-10 18:10:17 +01:00
|
|
|
--- content/public/browser/web_contents_observer.h
|
|
|
|
+++ content/public/browser/web_contents_observer.h
|
2022-04-14 01:35:46 +02:00
|
|
|
@@ -209,6 +209,9 @@ class CONTENT_EXPORT WebContentsObserver {
|
|
|
|
virtual void OnCaptureHandleConfigUpdate(
|
|
|
|
const blink::mojom::CaptureHandleConfig& config) {}
|
|
|
|
|
|
|
|
+ // This method is invoked when a RenderWidget is created.
|
|
|
|
+ virtual void RenderWidgetCreated(RenderWidgetHost* render_widget_host) {}
|
|
|
|
+
|
|
|
|
// This method is invoked when the RenderView of the current RenderViewHost
|
|
|
|
// is ready, e.g. because we recreated it after a crash.
|
|
|
|
virtual void RenderViewReady() {}
|
|
|
|
@@ -772,6 +775,10 @@ class CONTENT_EXPORT WebContentsObserver {
|
2020-02-10 18:10:17 +01:00
|
|
|
// WebContents has gained/lost focus.
|
|
|
|
virtual void OnFocusChangedInPage(FocusedNodeDetails* details) {}
|
|
|
|
|
|
|
|
+ // Notification that |render_frame_host| for this WebContents has gained
|
|
|
|
+ // focus.
|
|
|
|
+ virtual void OnFrameFocused(RenderFrameHost* render_frame_host) {}
|
|
|
|
+
|
|
|
|
// Notifies that the manifest URL for the main frame changed to
|
|
|
|
// |manifest_url|. This will be invoked when a document with a manifest loads
|
|
|
|
// or when the manifest URL changes (possibly to nothing). It is not invoked
|