2015-01-09 17:22:10 +00:00
|
|
|
diff --git ui/browser.cc ui/browser.cc
|
2016-06-20 18:59:23 -04:00
|
|
|
index 14a9336..6f26daf 100644
|
2015-01-09 17:22:10 +00:00
|
|
|
--- ui/browser.cc
|
|
|
|
+++ ui/browser.cc
|
2016-06-20 18:59:23 -04:00
|
|
|
@@ -1614,7 +1614,9 @@ bool Browser::ShouldCreateWebContents(
|
2015-07-23 20:06:56 -04:00
|
|
|
const std::string& frame_name,
|
2015-01-09 17:22:10 +00:00
|
|
|
const GURL& target_url,
|
|
|
|
const std::string& partition_id,
|
|
|
|
- content::SessionStorageNamespace* session_storage_namespace) {
|
|
|
|
+ content::SessionStorageNamespace* session_storage_namespace,
|
|
|
|
+ content::WebContentsView** view,
|
|
|
|
+ content::RenderViewHostDelegateView** delegate_view) {
|
|
|
|
if (window_container_type == WINDOW_CONTAINER_TYPE_BACKGROUND) {
|
|
|
|
// If a BackgroundContents is created, suppress the normal WebContents.
|
2015-11-10 15:18:16 -05:00
|
|
|
return !MaybeCreateBackgroundContents(
|
2015-01-09 17:22:10 +00:00
|
|
|
diff --git ui/browser.h ui/browser.h
|
2016-06-20 18:59:23 -04:00
|
|
|
index 01f2880..e741e21 100644
|
2015-01-09 17:22:10 +00:00
|
|
|
--- ui/browser.h
|
|
|
|
+++ ui/browser.h
|
2016-05-24 19:35:43 -04:00
|
|
|
@@ -616,7 +616,9 @@ class Browser : public TabStripModelObserver,
|
2015-07-23 20:06:56 -04:00
|
|
|
const std::string& frame_name,
|
2015-01-09 17:22:10 +00:00
|
|
|
const GURL& target_url,
|
|
|
|
const std::string& partition_id,
|
|
|
|
- content::SessionStorageNamespace* session_storage_namespace) override;
|
|
|
|
+ content::SessionStorageNamespace* session_storage_namespace,
|
|
|
|
+ content::WebContentsView** view,
|
|
|
|
+ content::RenderViewHostDelegateView** delegate_view) override;
|
|
|
|
void WebContentsCreated(content::WebContents* source_contents,
|
|
|
|
int opener_render_frame_id,
|
2015-07-23 20:06:56 -04:00
|
|
|
const std::string& frame_name,
|