| 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 aec94622974f4ffaf27021220037b2ff3e486aec..620bc4cd37e27f9bfef9963d87802a6263622ec2 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -1324,11 +1324,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
|
|
|