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" |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 ChromeBlobStorageContext::GetFor(browser_context_); | 377 ChromeBlobStorageContext::GetFor(browser_context_); |
378 StreamContext* stream_context = StreamContext::GetFor(browser_context_); | 378 StreamContext* stream_context = StreamContext::GetFor(browser_context_); |
379 ProtocolHandlerMap protocol_handlers; | 379 ProtocolHandlerMap protocol_handlers; |
380 protocol_handlers[kBlobScheme] = | 380 protocol_handlers[kBlobScheme] = |
381 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( | 381 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( |
382 new BlobProtocolHandler(blob_storage_context, | 382 new BlobProtocolHandler(blob_storage_context, |
383 stream_context, | 383 stream_context, |
384 partition->GetFileSystemContext())); | 384 partition->GetFileSystemContext())); |
385 protocol_handlers[kFileSystemScheme] = | 385 protocol_handlers[kFileSystemScheme] = |
386 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( | 386 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( |
387 CreateFileSystemProtocolHandler(partition_domain, | 387 CreateFileSystemProtocolHandler(partition->GetFileSystemContext())); |
388 partition->GetFileSystemContext())); | |
389 protocol_handlers[kChromeUIScheme] = | 388 protocol_handlers[kChromeUIScheme] = |
390 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( | 389 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( |
391 URLDataManagerBackend::CreateProtocolHandler( | 390 URLDataManagerBackend::CreateProtocolHandler( |
392 browser_context_->GetResourceContext(), | 391 browser_context_->GetResourceContext(), |
393 browser_context_->IsOffTheRecord(), | 392 browser_context_->IsOffTheRecord(), |
394 partition->GetAppCacheService(), | 393 partition->GetAppCacheService(), |
395 blob_storage_context)); | 394 blob_storage_context)); |
396 std::vector<std::string> additional_webui_schemes; | 395 std::vector<std::string> additional_webui_schemes; |
397 GetContentClient()->browser()->GetAdditionalWebUISchemes( | 396 GetContentClient()->browser()->GetAdditionalWebUISchemes( |
398 &additional_webui_schemes); | 397 &additional_webui_schemes); |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 | 560 |
562 // We do not call InitializeURLRequestContext() for media contexts because, | 561 // We do not call InitializeURLRequestContext() for media contexts because, |
563 // other than the HTTP cache, the media contexts share the same backing | 562 // other than the HTTP cache, the media contexts share the same backing |
564 // objects as their associated "normal" request context. Thus, the previous | 563 // objects as their associated "normal" request context. Thus, the previous |
565 // call serves to initialize the media request context for this storage | 564 // call serves to initialize the media request context for this storage |
566 // partition as well. | 565 // partition as well. |
567 } | 566 } |
568 } | 567 } |
569 | 568 |
570 } // namespace content | 569 } // namespace content |
OLD | NEW |