Chromium Code Reviews| 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..c26f6f7b14d2608a650603f009cc8db375120906 100644 |
| --- a/chrome/browser/chrome_content_browser_client.cc |
| +++ b/chrome/browser/chrome_content_browser_client.cc |
| @@ -767,8 +767,11 @@ 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, |
|
Mark Seaborn
2013/06/26 14:45:34
Please put 'id' on the following line for readabil
|
| + profile->IsOffTheRecord(), profile->GetPath(), extension_info_map, |
| + context)); |
| #endif |
| host->Send(new ChromeViewMsg_SetIsIncognitoProcess( |