OLD | NEW |
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 "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/files/file_enumerator.h" | 10 #include "base/files/file_enumerator.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
13 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
14 #include "base/strings/string_util.h" | 14 #include "base/strings/string_util.h" |
15 #include "base/strings/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
16 #include "base/threading/sequenced_worker_pool.h" | 16 #include "base/threading/sequenced_worker_pool.h" |
17 #include "content/browser/appcache/chrome_appcache_service.h" | 17 #include "content/browser/appcache/chrome_appcache_service.h" |
18 #include "content/browser/fileapi/browser_file_system_helper.h" | 18 #include "content/browser/fileapi/browser_file_system_helper.h" |
19 #include "content/browser/fileapi/chrome_blob_storage_context.h" | 19 #include "content/browser/fileapi/chrome_blob_storage_context.h" |
20 #include "content/browser/loader/resource_request_info_impl.h" | 20 #include "content/browser/loader/resource_request_info_impl.h" |
21 #include "content/browser/resource_context_impl.h" | 21 #include "content/browser/resource_context_impl.h" |
| 22 #include "content/browser/service_worker/service_worker_request_interceptor.h" |
22 #include "content/browser/storage_partition_impl.h" | 23 #include "content/browser/storage_partition_impl.h" |
23 #include "content/browser/streams/stream.h" | 24 #include "content/browser/streams/stream.h" |
24 #include "content/browser/streams/stream_context.h" | 25 #include "content/browser/streams/stream_context.h" |
25 #include "content/browser/streams/stream_registry.h" | 26 #include "content/browser/streams/stream_registry.h" |
26 #include "content/browser/streams/stream_url_request_job.h" | 27 #include "content/browser/streams/stream_url_request_job.h" |
27 #include "content/browser/webui/url_data_manager_backend.h" | 28 #include "content/browser/webui/url_data_manager_backend.h" |
28 #include "content/public/browser/browser_context.h" | 29 #include "content/public/browser/browser_context.h" |
29 #include "content/public/browser/browser_thread.h" | 30 #include "content/public/browser/browser_thread.h" |
30 #include "content/public/browser/content_browser_client.h" | 31 #include "content/public/browser/content_browser_client.h" |
31 #include "content/public/browser/storage_partition.h" | 32 #include "content/public/browser/storage_partition.h" |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 browser_context_->GetResourceContext(), | 405 browser_context_->GetResourceContext(), |
405 browser_context_->IsOffTheRecord(), | 406 browser_context_->IsOffTheRecord(), |
406 partition->GetAppCacheService(), | 407 partition->GetAppCacheService(), |
407 blob_storage_context)); | 408 blob_storage_context)); |
408 } | 409 } |
409 protocol_handlers[kChromeDevToolsScheme] = | 410 protocol_handlers[kChromeDevToolsScheme] = |
410 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( | 411 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( |
411 CreateDevToolsProtocolHandler(browser_context_->GetResourceContext(), | 412 CreateDevToolsProtocolHandler(browser_context_->GetResourceContext(), |
412 browser_context_->IsOffTheRecord())); | 413 browser_context_->IsOffTheRecord())); |
413 | 414 |
| 415 ProtocolHandlerScopedVector protocol_interceptors; |
| 416 protocol_interceptors.push_back(new ServiceWorkerRequestInterceptor); |
| 417 |
414 // These calls must happen after StoragePartitionImpl::Create(). | 418 // These calls must happen after StoragePartitionImpl::Create(). |
415 if (partition_domain.empty()) { | 419 if (partition_domain.empty()) { |
416 partition->SetURLRequestContext( | 420 partition->SetURLRequestContext( |
417 GetContentClient()->browser()->CreateRequestContext( | 421 GetContentClient()->browser()->CreateRequestContext( |
418 browser_context_, | 422 browser_context_, |
419 &protocol_handlers)); | 423 &protocol_handlers, |
| 424 protocol_interceptors.Pass())); |
420 } else { | 425 } else { |
421 partition->SetURLRequestContext( | 426 partition->SetURLRequestContext( |
422 GetContentClient()->browser()->CreateRequestContextForStoragePartition( | 427 GetContentClient()->browser()->CreateRequestContextForStoragePartition( |
423 browser_context_, partition->GetPath(), in_memory, | 428 browser_context_, partition->GetPath(), in_memory, |
424 &protocol_handlers)); | 429 &protocol_handlers, |
| 430 protocol_interceptors.Pass())); |
425 } | 431 } |
426 partition->SetMediaURLRequestContext( | 432 partition->SetMediaURLRequestContext( |
427 partition_domain.empty() ? | 433 partition_domain.empty() ? |
428 browser_context_->GetMediaRequestContext() : | 434 browser_context_->GetMediaRequestContext() : |
429 browser_context_->GetMediaRequestContextForStoragePartition( | 435 browser_context_->GetMediaRequestContextForStoragePartition( |
430 partition->GetPath(), in_memory)); | 436 partition->GetPath(), in_memory)); |
431 | 437 |
432 PostCreateInitialization(partition, in_memory); | 438 PostCreateInitialization(partition, in_memory); |
433 | 439 |
434 return partition; | 440 return partition; |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 | 557 |
552 // We do not call InitializeURLRequestContext() for media contexts because, | 558 // We do not call InitializeURLRequestContext() for media contexts because, |
553 // other than the HTTP cache, the media contexts share the same backing | 559 // other than the HTTP cache, the media contexts share the same backing |
554 // objects as their associated "normal" request context. Thus, the previous | 560 // objects as their associated "normal" request context. Thus, the previous |
555 // call serves to initialize the media request context for this storage | 561 // call serves to initialize the media request context for this storage |
556 // partition as well. | 562 // partition as well. |
557 } | 563 } |
558 } | 564 } |
559 | 565 |
560 } // namespace content | 566 } // namespace content |
OLD | NEW |