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 9a5eec5822fc3730fc09137d6556a938ca0d1056..52041171a6cd7420046b5a473b482734b3366392 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -94,6 +94,7 @@ |
#include "content/browser/speech/input_tag_speech_dispatcher_host.h" |
#include "content/browser/speech/speech_recognition_dispatcher_host.h" |
#include "content/browser/storage_partition_impl.h" |
+#include "content/browser/streams/stream_context.h" |
#include "content/browser/tracing/trace_message_filter.h" |
#include "content/browser/webui/web_ui_controller_factory_registry.h" |
#include "content/browser/worker_host/worker_message_filter.h" |
@@ -673,7 +674,8 @@ void RenderProcessHostImpl::CreateMessageFilters() { |
GetID(), |
storage_partition_impl_->GetURLRequestContext(), |
storage_partition_impl_->GetFileSystemContext(), |
- ChromeBlobStorageContext::GetFor(browser_context))); |
+ ChromeBlobStorageContext::GetFor(browser_context), |
+ StreamContext::GetFor(browser_context))); |
channel_->AddFilter(new OrientationMessageFilter()); |
channel_->AddFilter(new FileUtilitiesMessageFilter(GetID())); |
channel_->AddFilter(new MimeRegistryMessageFilter()); |