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 4a0bd34f99e30cd2b2d873072a19543409b734cc..ea2d4aeb884a3965e936e4b4df6531633da613ee 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -68,7 +68,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" |
@@ -567,12 +566,6 @@ void RenderProcessHostImpl::CreateMessageFilters() { |
#if defined(ENABLE_WEBRTC) |
channel_->AddFilter(new MediaStreamDispatcherHost(GetID())); |
#endif |
- channel_->AddFilter( |
- GetContentClient()->browser()->AllowPepperPrivateFileAPI() ? |
- new PepperUnsafeFileMessageFilter( |
- GetID(), |
- storage_partition_impl_->GetPath()) : |
- new PepperFileMessageFilter(GetID())); |
channel_->AddFilter(new PepperMessageFilter(PepperMessageFilter::RENDERER, |
GetID(), browser_context)); |
#if defined(ENABLE_INPUT_SPEECH) |