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