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
|
2023-06-26 12:13:38 +02:00
|
|
|
index 4efa2e72fdc34..1319dfa2c2b2f 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
|
2023-06-26 12:13:38 +02:00
|
|
|
@@ -3242,6 +3242,12 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params,
|
2023-01-03 00:34:43 +01:00
|
|
|
params.main_frame_name, GetOpener(), primary_main_frame_policy,
|
|
|
|
base::UnguessableToken::Create());
|
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_) {
|
2022-05-19 12:28:44 +02:00
|
|
|
std::unique_ptr<WebContentsViewDelegate> delegate =
|
2020-10-08 21:54:42 +02:00
|
|
|
GetContentClient()->browser()->GetWebContentsViewDelegate(this);
|
|
|
|
|
2023-06-26 12:13:38 +02:00
|
|
|
@@ -3252,6 +3258,7 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params,
|
2022-05-19 12:28:44 +02:00
|
|
|
view_ = CreateWebContentsView(this, std::move(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
|
|
|
|
2023-06-26 12:13:38 +02:00
|
|
|
@@ -3441,6 +3448,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(
|
2023-06-26 12:13:38 +02:00
|
|
|
@@ -4170,6 +4180,15 @@ FrameTree* WebContentsImpl::CreateNewWindow(
|
2023-02-27 19:52:38 +01:00
|
|
|
create_params.picture_in_picture_options = *(params.pip_options);
|
2022-07-21 19:26:10 +02:00
|
|
|
}
|
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);
|
|
|
|
+ }
|
|
|
|
+
|
2023-01-03 00:34:43 +01:00
|
|
|
// Check whether there is an available prerendered page for this navigation if
|
|
|
|
// this is not for guest. If it exists, take WebContents pre-created for
|
|
|
|
// hosting the prerendered page instead of creating new WebContents.
|
2023-06-26 12:13:38 +02:00
|
|
|
@@ -8117,6 +8136,9 @@ void WebContentsImpl::SetFocusedFrame(FrameTreeNode* node,
|
2022-01-24 17:13:32 +01:00
|
|
|
// frames).
|
2023-01-03 00:34:43 +01:00
|
|
|
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
|
2023-06-26 12:13:38 +02:00
|
|
|
index ea1643f689885..6cf095a71303b 100644
|
2017-02-10 23:44:11 +01:00
|
|
|
--- content/public/browser/web_contents.h
|
|
|
|
+++ content/public/browser/web_contents.h
|
2023-06-26 12:13:38 +02:00
|
|
|
@@ -97,10 +97,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;
|
2023-06-26 12:13:38 +02:00
|
|
|
@@ -243,6 +245,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
|
2023-06-26 12:13:38 +02:00
|
|
|
index c5bda327264c3..4b82e0c9ff345 100644
|
2017-02-10 23:44:11 +01:00
|
|
|
--- content/public/browser/web_contents_delegate.h
|
|
|
|
+++ content/public/browser/web_contents_delegate.h
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -59,9 +59,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;
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -343,6 +345,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
|
2023-06-26 12:13:38 +02:00
|
|
|
index 9694d1854873e..ae7327bd8d80b 100644
|
2020-02-10 18:10:17 +01:00
|
|
|
--- content/public/browser/web_contents_observer.h
|
|
|
|
+++ content/public/browser/web_contents_observer.h
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -220,6 +220,9 @@ class CONTENT_EXPORT WebContentsObserver {
|
2022-04-14 01:35:46 +02:00
|
|
|
virtual void OnCaptureHandleConfigUpdate(
|
|
|
|
const blink::mojom::CaptureHandleConfig& config) {}
|
|
|
|
|
|
|
|
+ // This method is invoked when a RenderWidget is created.
|
|
|
|
+ virtual void RenderWidgetCreated(RenderWidgetHost* render_widget_host) {}
|
|
|
|
+
|
2022-08-23 03:37:40 +02:00
|
|
|
// This method is invoked when the `blink::WebView` of the current
|
|
|
|
// RenderViewHost is ready, e.g. because we recreated it after a crash.
|
2022-04-14 01:35:46 +02:00
|
|
|
virtual void RenderViewReady() {}
|
2023-06-26 12:13:38 +02:00
|
|
|
@@ -817,6 +820,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
|