| 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 2e4f096b30aa0ab2beea4b0aeb553e6bf8e59153..f5e455f8a7db306def559ce607c5de482223b129 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -70,7 +70,6 @@
|
| #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h"
|
| #include "content/browser/renderer_host/media/video_capture_host.h"
|
| #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h"
|
| -#include "content/browser/renderer_host/pepper/pepper_file_message_filter.h"
|
| #include "content/browser/renderer_host/pepper/pepper_message_filter.h"
|
| #include "content/browser/renderer_host/quota_dispatcher_host.h"
|
| #include "content/browser/renderer_host/render_message_filter.h"
|
| @@ -539,12 +538,6 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| channel_->AddFilter(new MediaStreamDispatcherHost(GetID()));
|
| #endif
|
| #if defined(ENABLE_PLUGINS)
|
| - channel_->AddFilter(
|
| - GetContentClient()->browser()->AllowPepperPrivateFileAPI() ?
|
| - new PepperUnsafeFileMessageFilter(
|
| - GetID(),
|
| - storage_partition_impl_->GetPath()) :
|
| - new PepperFileMessageFilter(GetID()));
|
| channel_->AddFilter(new PepperMessageFilter(PepperMessageFilter::RENDERER,
|
| GetID(), browser_context));
|
| #endif
|
|
|