| 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 5dc842e682d64b8bdcf0b4ef4d05ee0396d0633a..3070791abbf69a9f20f1cfd4ada7ebfa35e13f39 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -769,8 +769,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(
|
|
|