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
|
2017-10-20 19:45:20 +02:00
|
|
|
index 7297db47cf2d..d47c44680415 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
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -1762,6 +1762,12 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) {
|
2017-02-10 23:44:11 +01:00
|
|
|
std::string unique_name;
|
|
|
|
frame_tree_.root()->SetFrameName(params.main_frame_name, unique_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);
|
|
|
|
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -1772,6 +1778,7 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) {
|
2017-02-10 23:44:11 +01:00
|
|
|
view_.reset(CreateWebContentsView(this, delegate,
|
|
|
|
&render_view_host_delegate_view_));
|
|
|
|
}
|
|
|
|
+ }
|
|
|
|
|
|
|
|
if (browser_plugin_guest_ && !GuestMode::IsCrossProcessFrameGuest(this)) {
|
|
|
|
view_.reset(new WebContentsViewGuest(this, browser_plugin_guest_.get(),
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -2340,6 +2347,15 @@ void WebContentsImpl::CreateNewWindow(
|
2017-02-10 23:44:11 +01:00
|
|
|
create_params.renderer_initiated_creation =
|
|
|
|
main_frame_route_id != MSG_ROUTING_NONE;
|
|
|
|
|
|
|
|
+ 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);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
WebContentsImpl* new_contents = NULL;
|
|
|
|
if (!is_guest) {
|
|
|
|
create_params.context = view_->GetNativeView();
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -2369,7 +2385,7 @@ void WebContentsImpl::CreateNewWindow(
|
2017-02-10 23:44:11 +01:00
|
|
|
// TODO(brettw): It seems bogus that we have to call this function on the
|
|
|
|
// newly created object and give it one of its own member variables.
|
|
|
|
new_view->CreateViewForWidget(
|
|
|
|
- new_contents->GetRenderViewHost()->GetWidget(), false);
|
|
|
|
+ new_contents->GetRenderViewHost()->GetWidget(), nullptr);
|
|
|
|
}
|
|
|
|
// Save the created window associated with the route so we can show it
|
|
|
|
// later.
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -5507,7 +5523,7 @@ InterstitialPageImpl* WebContentsImpl::GetInterstitialForRenderManager() {
|
2017-02-10 23:44:11 +01:00
|
|
|
void WebContentsImpl::CreateRenderWidgetHostViewForRenderManager(
|
|
|
|
RenderViewHost* render_view_host) {
|
|
|
|
RenderWidgetHostViewBase* rwh_view =
|
|
|
|
- view_->CreateViewForWidget(render_view_host->GetWidget(), false);
|
|
|
|
+ view_->CreateViewForWidget(render_view_host->GetWidget(), nullptr);
|
|
|
|
|
|
|
|
// Now that the RenderView has been created, we need to tell it its size.
|
|
|
|
if (rwh_view)
|
|
|
|
diff --git content/public/browser/web_contents.cc content/public/browser/web_contents.cc
|
2017-09-06 23:40:58 +02:00
|
|
|
index fa0afb545df9..d677b310e5ec 100644
|
2017-02-10 23:44:11 +01:00
|
|
|
--- content/public/browser/web_contents.cc
|
|
|
|
+++ content/public/browser/web_contents.cc
|
|
|
|
@@ -29,7 +29,9 @@ WebContents::CreateParams::CreateParams(BrowserContext* context,
|
|
|
|
guest_delegate(nullptr),
|
|
|
|
context(nullptr),
|
|
|
|
renderer_initiated_creation(false),
|
|
|
|
- initialize_renderer(false) {
|
|
|
|
+ initialize_renderer(false),
|
|
|
|
+ view(nullptr),
|
|
|
|
+ delegate_view(nullptr) {
|
|
|
|
}
|
|
|
|
|
|
|
|
WebContents::CreateParams::CreateParams(const CreateParams& other) = default;
|
|
|
|
diff --git content/public/browser/web_contents.h content/public/browser/web_contents.h
|
2017-10-20 19:45:20 +02:00
|
|
|
index 453942537f6c..be871fbb677b 100644
|
2017-02-10 23:44:11 +01:00
|
|
|
--- content/public/browser/web_contents.h
|
|
|
|
+++ content/public/browser/web_contents.h
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -68,9 +68,11 @@ class InterstitialPage;
|
|
|
|
class PageState;
|
2017-02-10 23:44:11 +01:00
|
|
|
class RenderFrameHost;
|
|
|
|
class RenderViewHost;
|
|
|
|
+class RenderViewHostDelegateView;
|
|
|
|
class RenderWidgetHost;
|
|
|
|
class RenderWidgetHostView;
|
|
|
|
class WebContentsDelegate;
|
|
|
|
+class WebContentsView;
|
|
|
|
struct CustomContextMenuContext;
|
|
|
|
struct DropData;
|
|
|
|
struct Manifest;
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -170,6 +172,10 @@ class WebContents : public PageNavigator,
|
2017-02-10 23:44:11 +01:00
|
|
|
// Note that the pre-created renderer process may not be used if the first
|
|
|
|
// navigation requires a dedicated or privileged process, such as a WebUI.
|
|
|
|
bool initialize_renderer;
|
|
|
|
+
|
|
|
|
+ // Optionally specify the view and delegate view.
|
|
|
|
+ content::WebContentsView* view;
|
|
|
|
+ content::RenderViewHostDelegateView* delegate_view;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Creates a new WebContents.
|
|
|
|
diff --git content/public/browser/web_contents_delegate.h content/public/browser/web_contents_delegate.h
|
2017-10-20 19:45:20 +02:00
|
|
|
index 3f31a372ecbb..0958fe90bb31 100644
|
2017-02-10 23:44:11 +01:00
|
|
|
--- content/public/browser/web_contents_delegate.h
|
|
|
|
+++ content/public/browser/web_contents_delegate.h
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -44,11 +44,13 @@ class ColorChooser;
|
2017-02-10 23:44:11 +01:00
|
|
|
class JavaScriptDialogManager;
|
|
|
|
class PageState;
|
|
|
|
class RenderFrameHost;
|
|
|
|
+class RenderViewHostDelegateView;
|
|
|
|
class RenderWidgetHost;
|
|
|
|
class SessionStorageNamespace;
|
|
|
|
class SiteInstance;
|
2017-07-27 01:19:27 +02:00
|
|
|
class WebContents;
|
2017-02-10 23:44:11 +01:00
|
|
|
class WebContentsImpl;
|
|
|
|
+class WebContentsView;
|
|
|
|
struct ColorSuggestion;
|
|
|
|
struct ContextMenuParams;
|
|
|
|
struct DropData;
|
2017-10-20 19:45:20 +02:00
|
|
|
@@ -318,6 +320,14 @@ class CONTENT_EXPORT WebContentsDelegate {
|
2017-02-10 23:44:11 +01:00
|
|
|
const std::string& partition_id,
|
|
|
|
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,
|