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

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

Issue 2739323003: DevTools protocol interception, blocking & modification of requests (Closed)
Patch Set: Add a comment Created 3 years, 6 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/thread_task_runner_handle.h" 23 #include "base/threading/thread_task_runner_handle.h"
24 #include "build/build_config.h" 24 #include "build/build_config.h"
25 #include "content/browser/appcache/appcache_interceptor.h" 25 #include "content/browser/appcache/appcache_interceptor.h"
26 #include "content/browser/appcache/chrome_appcache_service.h" 26 #include "content/browser/appcache/chrome_appcache_service.h"
27 #include "content/browser/background_fetch/background_fetch_context.h" 27 #include "content/browser/background_fetch/background_fetch_context.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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 browser_context_->GetResourceContext(), blob_storage_context) 419 browser_context_->GetResourceContext(), blob_storage_context)
419 .release()); 420 .release());
420 } 421 }
421 422
422 protocol_handlers[kChromeDevToolsScheme] = 423 protocol_handlers[kChromeDevToolsScheme] =
423 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( 424 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>(
424 CreateDevToolsProtocolHandler( 425 CreateDevToolsProtocolHandler(
425 browser_context_->GetResourceContext())); 426 browser_context_->GetResourceContext()));
426 427
427 URLRequestInterceptorScopedVector request_interceptors; 428 URLRequestInterceptorScopedVector request_interceptors;
429 request_interceptors.push_back(
430 base::MakeUnique<DevToolsURLRequestInterceptor>(browser_context_));
428 request_interceptors.push_back(ServiceWorkerRequestHandler::CreateInterceptor( 431 request_interceptors.push_back(ServiceWorkerRequestHandler::CreateInterceptor(
429 browser_context_->GetResourceContext())); 432 browser_context_->GetResourceContext()));
430 if (ForeignFetchRequestHandler::IsForeignFetchEnabled()) { 433 if (ForeignFetchRequestHandler::IsForeignFetchEnabled()) {
431 request_interceptors.push_back( 434 request_interceptors.push_back(
432 ForeignFetchRequestHandler::CreateInterceptor( 435 ForeignFetchRequestHandler::CreateInterceptor(
433 browser_context_->GetResourceContext())); 436 browser_context_->GetResourceContext()));
434 } 437 }
435 request_interceptors.push_back(base::MakeUnique<AppCacheInterceptor>()); 438 request_interceptors.push_back(base::MakeUnique<AppCacheInterceptor>());
436 439
437 // These calls must happen after StoragePartitionImpl::Create(). 440 // These calls must happen after StoragePartitionImpl::Create().
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 595
593 // We do not call InitializeURLRequestContext() for media contexts because, 596 // We do not call InitializeURLRequestContext() for media contexts because,
594 // other than the HTTP cache, the media contexts share the same backing 597 // other than the HTTP cache, the media contexts share the same backing
595 // objects as their associated "normal" request context. Thus, the previous 598 // objects as their associated "normal" request context. Thus, the previous
596 // call serves to initialize the media request context for this storage 599 // call serves to initialize the media request context for this storage
597 // partition as well. 600 // partition as well.
598 } 601 }
599 } 602 }
600 603
601 } // namespace content 604 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698