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

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

Issue 2739323003: DevTools protocol interception, blocking & modification of requests (Closed)
Patch Set: Add missing expects plus tweak test output of Network.interceptedRedirect for clarity Created 3 years, 9 months 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/memory/ptr_util.h" 17 #include "base/memory/ptr_util.h"
18 #include "base/single_thread_task_runner.h" 18 #include "base/single_thread_task_runner.h"
19 #include "base/strings/string_number_conversions.h" 19 #include "base/strings/string_number_conversions.h"
20 #include "base/strings/string_util.h" 20 #include "base/strings/string_util.h"
21 #include "base/strings/stringprintf.h" 21 #include "base/strings/stringprintf.h"
22 #include "base/task_scheduler/post_task.h" 22 #include "base/task_scheduler/post_task.h"
23 #include "base/threading/sequenced_worker_pool.h" 23 #include "base/threading/sequenced_worker_pool.h"
24 #include "base/threading/thread_task_runner_handle.h" 24 #include "base/threading/thread_task_runner_handle.h"
25 #include "build/build_config.h" 25 #include "build/build_config.h"
26 #include "content/browser/appcache/appcache_interceptor.h" 26 #include "content/browser/appcache/appcache_interceptor.h"
27 #include "content/browser/appcache/chrome_appcache_service.h" 27 #include "content/browser/appcache/chrome_appcache_service.h"
28 #include "content/browser/blob_storage/chrome_blob_storage_context.h" 28 #include "content/browser/blob_storage/chrome_blob_storage_context.h"
29 #include "content/browser/devtools/devtools_url_request_interceptor.h"
29 #include "content/browser/fileapi/browser_file_system_helper.h" 30 #include "content/browser/fileapi/browser_file_system_helper.h"
30 #include "content/browser/loader/resource_request_info_impl.h" 31 #include "content/browser/loader/resource_request_info_impl.h"
31 #include "content/browser/resource_context_impl.h" 32 #include "content/browser/resource_context_impl.h"
32 #include "content/browser/service_worker/foreign_fetch_request_handler.h" 33 #include "content/browser/service_worker/foreign_fetch_request_handler.h"
33 #include "content/browser/service_worker/service_worker_request_handler.h" 34 #include "content/browser/service_worker/service_worker_request_handler.h"
34 #include "content/browser/storage_partition_impl.h" 35 #include "content/browser/storage_partition_impl.h"
35 #include "content/browser/streams/stream.h" 36 #include "content/browser/streams/stream.h"
36 #include "content/browser/streams/stream_context.h" 37 #include "content/browser/streams/stream_context.h"
37 #include "content/browser/streams/stream_registry.h" 38 #include "content/browser/streams/stream_registry.h"
38 #include "content/browser/streams/stream_url_request_job.h" 39 #include "content/browser/streams/stream_url_request_job.h"
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 browser_context_->GetResourceContext(), 434 browser_context_->GetResourceContext(),
434 browser_context_->IsOffTheRecord(), 435 browser_context_->IsOffTheRecord(),
435 blob_storage_context).release()); 436 blob_storage_context).release());
436 } 437 }
437 protocol_handlers[kChromeDevToolsScheme] = 438 protocol_handlers[kChromeDevToolsScheme] =
438 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( 439 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>(
439 CreateDevToolsProtocolHandler(browser_context_->GetResourceContext(), 440 CreateDevToolsProtocolHandler(browser_context_->GetResourceContext(),
440 browser_context_->IsOffTheRecord())); 441 browser_context_->IsOffTheRecord()));
441 442
442 URLRequestInterceptorScopedVector request_interceptors; 443 URLRequestInterceptorScopedVector request_interceptors;
444 request_interceptors.push_back(
445 base::MakeUnique<DevToolsURLRequestInterceptor>());
443 request_interceptors.push_back(ServiceWorkerRequestHandler::CreateInterceptor( 446 request_interceptors.push_back(ServiceWorkerRequestHandler::CreateInterceptor(
444 browser_context_->GetResourceContext())); 447 browser_context_->GetResourceContext()));
445 if (ForeignFetchRequestHandler::IsForeignFetchEnabled()) { 448 if (ForeignFetchRequestHandler::IsForeignFetchEnabled()) {
446 request_interceptors.push_back( 449 request_interceptors.push_back(
447 ForeignFetchRequestHandler::CreateInterceptor( 450 ForeignFetchRequestHandler::CreateInterceptor(
448 browser_context_->GetResourceContext())); 451 browser_context_->GetResourceContext()));
449 } 452 }
450 request_interceptors.push_back(base::MakeUnique<AppCacheInterceptor>()); 453 request_interceptors.push_back(base::MakeUnique<AppCacheInterceptor>());
451 454
452 // These calls must happen after StoragePartitionImpl::Create(). 455 // These calls must happen after StoragePartitionImpl::Create().
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 605
603 // We do not call InitializeURLRequestContext() for media contexts because, 606 // We do not call InitializeURLRequestContext() for media contexts because,
604 // other than the HTTP cache, the media contexts share the same backing 607 // other than the HTTP cache, the media contexts share the same backing
605 // objects as their associated "normal" request context. Thus, the previous 608 // objects as their associated "normal" request context. Thus, the previous
606 // call serves to initialize the media request context for this storage 609 // call serves to initialize the media request context for this storage
607 // partition as well. 610 // partition as well.
608 } 611 }
609 } 612 }
610 613
611 } // namespace content 614 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698