| 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 71fb48b244cb8e6fee0f474832a27def252e25e0..f17e51f2c6f320aa08d824652dd9d1cc588ba8e4 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -1317,11 +1317,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
|
|
|