| Index: chrome/browser/extensions/api/tab_capture/offscreen_tab.cc
|
| diff --git a/chrome/browser/extensions/api/tab_capture/offscreen_tab.cc b/chrome/browser/extensions/api/tab_capture/offscreen_tab.cc
|
| index f50fdf9c3cb89cd7087e96e447cd697affb933df..572b90cfc24bde8ecb4f6c81c330dc6f9752f63b 100644
|
| --- a/chrome/browser/extensions/api/tab_capture/offscreen_tab.cc
|
| +++ b/chrome/browser/extensions/api/tab_capture/offscreen_tab.cc
|
| @@ -206,16 +206,18 @@ bool OffscreenTab::CanDragEnter(
|
| }
|
|
|
| bool OffscreenTab::ShouldCreateWebContents(
|
| - WebContents* contents,
|
| + content::WebContents* web_contents,
|
| + content::SiteInstance* source_site_instance,
|
| int32_t route_id,
|
| int32_t main_frame_route_id,
|
| int32_t main_frame_widget_route_id,
|
| WindowContainerType window_container_type,
|
| + const GURL& opener_url,
|
| const std::string& frame_name,
|
| const GURL& target_url,
|
| const std::string& partition_id,
|
| content::SessionStorageNamespace* session_storage_namespace) {
|
| - DCHECK_EQ(offscreen_tab_web_contents_.get(), contents);
|
| + DCHECK_EQ(offscreen_tab_web_contents_.get(), web_contents);
|
| // Disallow creating separate WebContentses. The WebContents implementation
|
| // uses this to spawn new windows/tabs, which is also not allowed for
|
| // offscreen tabs.
|
|
|