| 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 4c2413e3d4a8a3efa4e1a53eadba43776fadcc44..9c3dfcac4fe6b27caced1191e3ccdf5280baaf5d 100644
 | 
| --- a/content/browser/renderer_host/render_process_host_impl.cc
 | 
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
 | 
| @@ -43,6 +43,7 @@
 | 
|  #include "content/browser/appcache/chrome_appcache_service.h"
 | 
|  #include "content/browser/background_sync/background_sync_service_impl.h"
 | 
|  #include "content/browser/bad_message.h"
 | 
| +#include "content/browser/blob_storage/blob_dispatcher_host.h"
 | 
|  #include "content/browser/bluetooth/bluetooth_dispatcher_host.h"
 | 
|  #include "content/browser/browser_child_process_host_impl.h"
 | 
|  #include "content/browser/browser_main.h"
 | 
| @@ -930,6 +931,8 @@ void RenderProcessHostImpl::CreateMessageFilters() {
 | 
|        storage_partition_impl_->GetFileSystemContext(),
 | 
|        ChromeBlobStorageContext::GetFor(browser_context),
 | 
|        StreamContext::GetFor(browser_context)));
 | 
| +  AddFilter(new BlobDispatcherHost(
 | 
| +      GetID(), ChromeBlobStorageContext::GetFor(browser_context)));
 | 
|    AddFilter(new FileUtilitiesMessageFilter(GetID()));
 | 
|    AddFilter(new MimeRegistryMessageFilter());
 | 
|    AddFilter(
 | 
| 
 |