| 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 017a8182be2c7b8ef702639c45443925469bae49..9ca028b9a0f28ba2338297f73713d37883c7f829 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"
|
| @@ -734,6 +735,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()));
|
|
|