Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: content/browser/storage_partition_impl_map.cc

Issue 2445993006: [WIP] Upgrade-insecure-request: upgrade insecurely-redirected requests.
Patch Set: bugfix Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/storage_partition_impl_map.h" 5 #include "content/browser/storage_partition_impl_map.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/files/file_enumerator.h" 12 #include "base/files/file_enumerator.h"
13 #include "base/files/file_path.h" 13 #include "base/files/file_path.h"
14 #include "base/files/file_util.h" 14 #include "base/files/file_util.h"
15 #include "base/location.h" 15 #include "base/location.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/single_thread_task_runner.h" 17 #include "base/single_thread_task_runner.h"
18 #include "base/strings/string_number_conversions.h" 18 #include "base/strings/string_number_conversions.h"
19 #include "base/strings/string_util.h" 19 #include "base/strings/string_util.h"
20 #include "base/strings/stringprintf.h" 20 #include "base/strings/stringprintf.h"
21 #include "base/threading/sequenced_worker_pool.h" 21 #include "base/threading/sequenced_worker_pool.h"
22 #include "base/threading/thread_task_runner_handle.h" 22 #include "base/threading/thread_task_runner_handle.h"
23 #include "build/build_config.h" 23 #include "build/build_config.h"
24 #include "content/browser/appcache/appcache_interceptor.h" 24 #include "content/browser/appcache/appcache_interceptor.h"
25 #include "content/browser/appcache/chrome_appcache_service.h" 25 #include "content/browser/appcache/chrome_appcache_service.h"
26 #include "content/browser/blob_storage/chrome_blob_storage_context.h" 26 #include "content/browser/blob_storage/chrome_blob_storage_context.h"
27 #include "content/browser/fileapi/browser_file_system_helper.h" 27 #include "content/browser/fileapi/browser_file_system_helper.h"
28 #include "content/browser/loader/resource_request_info_impl.h" 28 #include "content/browser/loader/resource_request_info_impl.h"
29 #include "content/browser/net/url_request_insecure_interceptor.h"
29 #include "content/browser/resource_context_impl.h" 30 #include "content/browser/resource_context_impl.h"
30 #include "content/browser/service_worker/foreign_fetch_request_handler.h" 31 #include "content/browser/service_worker/foreign_fetch_request_handler.h"
31 #include "content/browser/service_worker/service_worker_request_handler.h" 32 #include "content/browser/service_worker/service_worker_request_handler.h"
32 #include "content/browser/storage_partition_impl.h" 33 #include "content/browser/storage_partition_impl.h"
33 #include "content/browser/streams/stream.h" 34 #include "content/browser/streams/stream.h"
34 #include "content/browser/streams/stream_context.h" 35 #include "content/browser/streams/stream_context.h"
35 #include "content/browser/streams/stream_registry.h" 36 #include "content/browser/streams/stream_registry.h"
36 #include "content/browser/streams/stream_url_request_job.h" 37 #include "content/browser/streams/stream_url_request_job.h"
37 #include "content/browser/webui/url_data_manager_backend.h" 38 #include "content/browser/webui/url_data_manager_backend.h"
38 #include "content/public/browser/browser_context.h" 39 #include "content/public/browser/browser_context.h"
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 browser_context_->GetResourceContext(), 436 browser_context_->GetResourceContext(),
436 browser_context_->IsOffTheRecord(), 437 browser_context_->IsOffTheRecord(),
437 blob_storage_context).release()); 438 blob_storage_context).release());
438 } 439 }
439 protocol_handlers[kChromeDevToolsScheme] = 440 protocol_handlers[kChromeDevToolsScheme] =
440 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( 441 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>(
441 CreateDevToolsProtocolHandler(browser_context_->GetResourceContext(), 442 CreateDevToolsProtocolHandler(browser_context_->GetResourceContext(),
442 browser_context_->IsOffTheRecord())); 443 browser_context_->IsOffTheRecord()));
443 444
444 URLRequestInterceptorScopedVector request_interceptors; 445 URLRequestInterceptorScopedVector request_interceptors;
446 request_interceptors.push_back(new content::URLRequestInsecureInterceptor());
445 request_interceptors.push_back( 447 request_interceptors.push_back(
446 ServiceWorkerRequestHandler::CreateInterceptor( 448 ServiceWorkerRequestHandler::CreateInterceptor(
447 browser_context_->GetResourceContext()).release()); 449 browser_context_->GetResourceContext()).release());
448 if (ForeignFetchRequestHandler::IsForeignFetchEnabled()) { 450 if (ForeignFetchRequestHandler::IsForeignFetchEnabled()) {
449 request_interceptors.push_back( 451 request_interceptors.push_back(
450 ForeignFetchRequestHandler::CreateInterceptor( 452 ForeignFetchRequestHandler::CreateInterceptor(
451 browser_context_->GetResourceContext()) 453 browser_context_->GetResourceContext())
452 .release()); 454 .release());
453 } 455 }
454 request_interceptors.push_back(new AppCacheInterceptor()); 456 request_interceptors.push_back(new AppCacheInterceptor());
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 607
606 // We do not call InitializeURLRequestContext() for media contexts because, 608 // We do not call InitializeURLRequestContext() for media contexts because,
607 // other than the HTTP cache, the media contexts share the same backing 609 // other than the HTTP cache, the media contexts share the same backing
608 // objects as their associated "normal" request context. Thus, the previous 610 // objects as their associated "normal" request context. Thus, the previous
609 // call serves to initialize the media request context for this storage 611 // call serves to initialize the media request context for this storage
610 // partition as well. 612 // partition as well.
611 } 613 }
612 } 614 }
613 615
614 } // namespace content 616 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/net/url_request_insecure_interceptor.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698