| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index 831a7f8b23fee2df4da4a04da6f3af4b4547a3d4..d59b4bfc6d05295336afa73f55ddf782e9bf4dfa 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -1350,11 +1350,12 @@ bool ChromeContentBrowserClient::ShouldSwapBrowsingInstancesForNavigation(
|
| }
|
|
|
| bool ChromeContentBrowserClient::ShouldSwapProcessesForRedirect(
|
| - content::ResourceContext* resource_context, const GURL& current_url,
|
| + content::BrowserContext* browser_context,
|
| + const GURL& current_url,
|
| const GURL& new_url) {
|
| #if defined(ENABLE_EXTENSIONS)
|
| return ChromeContentBrowserClientExtensionsPart::
|
| - ShouldSwapProcessesForRedirect(resource_context, current_url, new_url);
|
| + ShouldSwapProcessesForRedirect(browser_context, current_url, new_url);
|
| #else
|
| return false;
|
| #endif
|
|
|