mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-30 11:04:52 +01:00
8da8a4fbf1
- The ffmpeg library is now statically linked (see https://codereview.chromium.org/1141703002). - Off-screen rendering of the PDF viewer does not work in combination with surfaces. Pass the `--disable-surfaces` command-line flag if GPU is enabled (see https://codereview.chromium.org/1169983006).
31 lines
1.4 KiB
Diff
31 lines
1.4 KiB
Diff
diff --git ui/browser.cc ui/browser.cc
|
|
index 242f79b..66326ef 100644
|
|
--- ui/browser.cc
|
|
+++ ui/browser.cc
|
|
@@ -1666,7 +1666,9 @@ bool Browser::ShouldCreateWebContents(
|
|
const std::string& frame_name,
|
|
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.
|
|
return !MaybeCreateBackgroundContents(route_id,
|
|
diff --git ui/browser.h ui/browser.h
|
|
index 9bb2137..6dbdcbf 100644
|
|
--- ui/browser.h
|
|
+++ ui/browser.h
|
|
@@ -593,7 +593,9 @@ class Browser : public TabStripModelObserver,
|
|
const std::string& frame_name,
|
|
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,
|
|
const std::string& frame_name,
|