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

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

Issue 195923002: Add mechanism to auto mount file systems in response to a URL request. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix CrOS Created 6 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 | Annotate | Revision Log
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 "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
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->GetFileSystemContext())); 387 CreateFileSystemProtocolHandler(partition_domain,
388 partition->GetFileSystemContext()));
388 protocol_handlers[kChromeUIScheme] = 389 protocol_handlers[kChromeUIScheme] =
389 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>( 390 linked_ptr<net::URLRequestJobFactory::ProtocolHandler>(
390 URLDataManagerBackend::CreateProtocolHandler( 391 URLDataManagerBackend::CreateProtocolHandler(
391 browser_context_->GetResourceContext(), 392 browser_context_->GetResourceContext(),
392 browser_context_->IsOffTheRecord(), 393 browser_context_->IsOffTheRecord(),
393 partition->GetAppCacheService(), 394 partition->GetAppCacheService(),
394 blob_storage_context)); 395 blob_storage_context));
395 std::vector<std::string> additional_webui_schemes; 396 std::vector<std::string> additional_webui_schemes;
396 GetContentClient()->browser()->GetAdditionalWebUISchemes( 397 GetContentClient()->browser()->GetAdditionalWebUISchemes(
397 &additional_webui_schemes); 398 &additional_webui_schemes);
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 561
561 // We do not call InitializeURLRequestContext() for media contexts because, 562 // We do not call InitializeURLRequestContext() for media contexts because,
562 // other than the HTTP cache, the media contexts share the same backing 563 // other than the HTTP cache, the media contexts share the same backing
563 // objects as their associated "normal" request context. Thus, the previous 564 // objects as their associated "normal" request context. Thus, the previous
564 // call serves to initialize the media request context for this storage 565 // call serves to initialize the media request context for this storage
565 // partition as well. 566 // partition as well.
566 } 567 }
567 } 568 }
568 569
569 } // namespace content 570 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/fileapi/file_system_url_request_job_unittest.cc ('k') | content/public/browser/content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698