139 lines
5.7 KiB
Diff
139 lines
5.7 KiB
Diff
diff --git content/browser/web_contents/web_contents_impl.cc content/browser/web_contents/web_contents_impl.cc
|
|
index e7e2e3d3163bb..e12381457f0bb 100644
|
|
--- content/browser/web_contents/web_contents_impl.cc
|
|
+++ content/browser/web_contents/web_contents_impl.cc
|
|
@@ -2899,6 +2899,12 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) {
|
|
frame_tree_.Init(site_instance.get(), params.renderer_initiated_creation,
|
|
params.main_frame_name);
|
|
|
|
+ if (params.view && params.delegate_view) {
|
|
+ view_.reset(params.view);
|
|
+ render_view_host_delegate_view_ = params.delegate_view;
|
|
+ }
|
|
+
|
|
+ if (!view_) {
|
|
WebContentsViewDelegate* delegate =
|
|
GetContentClient()->browser()->GetWebContentsViewDelegate(this);
|
|
|
|
@@ -2909,6 +2915,7 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) {
|
|
view_.reset(CreateWebContentsView(this, delegate,
|
|
&render_view_host_delegate_view_));
|
|
}
|
|
+ }
|
|
CHECK(render_view_host_delegate_view_);
|
|
CHECK(view_.get());
|
|
|
|
@@ -3739,6 +3746,15 @@ FrameTree* WebContentsImpl::CreateNewWindow(
|
|
// objects.
|
|
create_params.renderer_initiated_creation = !is_new_browsing_instance;
|
|
|
|
+ if (delegate_) {
|
|
+ delegate_->GetCustomWebContentsView(this,
|
|
+ params.target_url,
|
|
+ render_process_id,
|
|
+ opener->GetRoutingID(),
|
|
+ &create_params.view,
|
|
+ &create_params.delegate_view);
|
|
+ }
|
|
+
|
|
std::unique_ptr<WebContentsImpl> new_contents;
|
|
if (!is_guest) {
|
|
create_params.context = view_->GetNativeView();
|
|
@@ -7526,6 +7542,9 @@ void WebContentsImpl::SetFocusedFrame(FrameTreeNode* node,
|
|
// This is an outermost WebContents.
|
|
SetAsFocusedWebContentsIfNecessary();
|
|
}
|
|
+
|
|
+ observers_.NotifyObservers(&WebContentsObserver::OnFrameFocused,
|
|
+ node->current_frame_host());
|
|
}
|
|
|
|
void WebContentsImpl::DidCallFocus() {
|
|
diff --git content/public/browser/web_contents.cc content/public/browser/web_contents.cc
|
|
index c7302d7af6d8b..d19be54f36d39 100644
|
|
--- content/public/browser/web_contents.cc
|
|
+++ content/public/browser/web_contents.cc
|
|
@@ -31,6 +31,7 @@ WebContents::CreateParams::CreateParams(BrowserContext* context,
|
|
renderer_initiated_creation(false),
|
|
desired_renderer_state(kOkayToHaveRendererProcess),
|
|
starting_sandbox_flags(network::mojom::WebSandboxFlags::kNone),
|
|
+ delegate_view(nullptr),
|
|
is_never_visible(false),
|
|
creator_location(creator_location) {}
|
|
|
|
diff --git content/public/browser/web_contents.h content/public/browser/web_contents.h
|
|
index bfa0e468e11e6..31061d5821e60 100644
|
|
--- content/public/browser/web_contents.h
|
|
+++ content/public/browser/web_contents.h
|
|
@@ -88,10 +88,12 @@ class BrowserContext;
|
|
class BrowserPluginGuestDelegate;
|
|
class RenderFrameHost;
|
|
class RenderViewHost;
|
|
+class RenderViewHostDelegateView;
|
|
class RenderWidgetHostView;
|
|
class ScreenOrientationDelegate;
|
|
class SiteInstance;
|
|
class WebContentsDelegate;
|
|
+class WebContentsView;
|
|
class WebUI;
|
|
struct DropData;
|
|
struct MHTMLGenerationParams;
|
|
@@ -228,6 +230,10 @@ class WebContents : public PageNavigator,
|
|
// Sandboxing flags set on the new WebContents.
|
|
network::mojom::WebSandboxFlags starting_sandbox_flags;
|
|
|
|
+ // Optionally specify the view and delegate view.
|
|
+ content::WebContentsView* view;
|
|
+ content::RenderViewHostDelegateView* delegate_view;
|
|
+
|
|
// 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
|
|
diff --git content/public/browser/web_contents_delegate.h content/public/browser/web_contents_delegate.h
|
|
index a0da74d5cbe4a..1d6e4673a610f 100644
|
|
--- content/public/browser/web_contents_delegate.h
|
|
+++ content/public/browser/web_contents_delegate.h
|
|
@@ -59,10 +59,12 @@ class EyeDropperListener;
|
|
class FileSelectListener;
|
|
class JavaScriptDialogManager;
|
|
class RenderFrameHost;
|
|
+class RenderViewHostDelegateView;
|
|
class RenderWidgetHost;
|
|
class SessionStorageNamespace;
|
|
class SiteInstance;
|
|
class WebContentsImpl;
|
|
+class WebContentsView;
|
|
struct ContextMenuParams;
|
|
struct DropData;
|
|
struct MediaPlayerWatchTime;
|
|
@@ -335,6 +337,14 @@ class CONTENT_EXPORT WebContentsDelegate {
|
|
const StoragePartitionId& partition_id,
|
|
SessionStorageNamespace* session_storage_namespace);
|
|
|
|
+ virtual void GetCustomWebContentsView(
|
|
+ WebContents* web_contents,
|
|
+ const GURL& target_url,
|
|
+ int opener_render_process_id,
|
|
+ int opener_render_frame_id,
|
|
+ content::WebContentsView** view,
|
|
+ content::RenderViewHostDelegateView** delegate_view) {}
|
|
+
|
|
// Notifies the delegate about the creation of a new WebContents. This
|
|
// typically happens when popups are created.
|
|
virtual void WebContentsCreated(WebContents* source_contents,
|
|
diff --git content/public/browser/web_contents_observer.h content/public/browser/web_contents_observer.h
|
|
index 6921e5e094cfd..cb199b2d405d6 100644
|
|
--- content/public/browser/web_contents_observer.h
|
|
+++ content/public/browser/web_contents_observer.h
|
|
@@ -727,6 +727,10 @@ class CONTENT_EXPORT WebContentsObserver {
|
|
// 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
|