Index: content/browser/storage_partition_impl_map.cc |
diff --git a/content/browser/storage_partition_impl_map.cc b/content/browser/storage_partition_impl_map.cc |
index ba0c00561bcdc2bf41976a887a66698cf6a1c042..965aa6148e282322d5eda18a1c3d4a6516145cd9 100644 |
--- a/content/browser/storage_partition_impl_map.cc |
+++ b/content/browser/storage_partition_impl_map.cc |
@@ -27,6 +27,7 @@ |
#include "content/browser/blob_storage/chrome_blob_storage_context.h" |
#include "content/browser/fileapi/browser_file_system_helper.h" |
#include "content/browser/loader/resource_request_info_impl.h" |
+#include "content/browser/net/insecure_request_interceptor.h" |
#include "content/browser/resource_context_impl.h" |
#include "content/browser/service_worker/foreign_fetch_request_handler.h" |
#include "content/browser/service_worker/service_worker_request_handler.h" |
@@ -444,6 +445,7 @@ StoragePartitionImpl* StoragePartitionImplMap::Get( |
browser_context_->IsOffTheRecord())); |
URLRequestInterceptorScopedVector request_interceptors; |
+ request_interceptors.push_back(new InsecureRequestInterceptor()); |
request_interceptors.push_back( |
ServiceWorkerRequestHandler::CreateInterceptor( |
browser_context_->GetResourceContext()).release()); |