| 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 4684d0ee067b7553ad0216341afb5addeaa2e000..6a980476f9bdb3a72534e695f0074154cab778a7 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -91,6 +91,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"
|
| @@ -654,7 +655,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());
|
|
|