| 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 6e16a0b943b5b0717e432c000f521b9908acafc9..f3dfdbcce602444ae4f1e3650d489ede6dd11711 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -767,8 +767,12 @@ void ChromeContentBrowserClient::RenderProcessHostCreated(
|
| host->GetChannel()->AddFilter(new WebRtcLoggingHandlerHost());
|
| #endif
|
| #if !defined(DISABLE_NACL)
|
| - host->GetChannel()->AddFilter(new NaClHostMessageFilter(id, profile,
|
| - context));
|
| + ExtensionInfoMap* extension_info_map =
|
| + extensions::ExtensionSystem::Get(profile)->info_map();
|
| + host->GetChannel()->AddFilter(new NaClHostMessageFilter(
|
| + id, profile->IsOffTheRecord(),
|
| + profile->GetPath(), extension_info_map,
|
| + context));
|
| #endif
|
|
|
| host->Send(new ChromeViewMsg_SetIsIncognitoProcess(
|
|
|