| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 1b610a259edac5a9f2708f3ca05886726453ce95..80d6dac57de8a790b873dee54fdf55db023e20bd 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -543,6 +543,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| #if defined(ENABLE_WEBRTC)
|
| channel_->AddFilter(new MediaStreamDispatcherHost(GetID()));
|
| #endif
|
| +#if defined(ENABLE_PPAPI)
|
| channel_->AddFilter(
|
| GetContentClient()->browser()->AllowPepperPrivateFileAPI() ?
|
| new PepperUnsafeFileMessageFilter(
|
| @@ -551,6 +552,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| new PepperFileMessageFilter(GetID()));
|
| channel_->AddFilter(new PepperMessageFilter(PepperMessageFilter::RENDERER,
|
| GetID(), browser_context));
|
| +#endif
|
| #if defined(ENABLE_INPUT_SPEECH)
|
| channel_->AddFilter(new InputTagSpeechDispatcherHost(
|
| IsGuest(), GetID(), storage_partition_impl_->GetURLRequestContext(),
|
|
|