| 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 b1802c1a97dd0529a0288d077a141c9afb1323c2..6aba76193caa61446ab79c79a7f55fc8c1d136c9 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -46,6 +46,7 @@
|
| #include "chrome/browser/google/google_util.h"
|
| #include "chrome/browser/media/media_capture_devices_dispatcher.h"
|
| #include "chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.h"
|
| +#include "chrome/browser/nacl_host/nacl_host_message_filter.h"
|
| #include "chrome/browser/nacl_host/nacl_process_host.h"
|
| #include "chrome/browser/net/chrome_net_log.h"
|
| #include "chrome/browser/notifications/desktop_notification_service.h"
|
| @@ -746,6 +747,10 @@ void ChromeContentBrowserClient::RenderProcessHostCreated(
|
| #if defined(ENABLE_WEBRTC)
|
| host->GetChannel()->AddFilter(new WebRtcLoggingHandlerHost());
|
| #endif
|
| +#if !defined(DISABLE_NACL)
|
| + host->GetChannel()->AddFilter(new NaClHostMessageFilter(id, profile,
|
| + context));
|
| +#endif
|
|
|
| host->Send(new ChromeViewMsg_SetIsIncognitoProcess(
|
| profile->IsOffTheRecord()));
|
|
|