Chromium Code Reviews| 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 "webkit/browser/fileapi/file_system_url_request_job_factory.h" | 5 #include "webkit/browser/fileapi/file_system_url_request_job_factory.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "net/url_request/url_request.h" | 11 #include "net/url_request/url_request.h" |
| 12 #include "webkit/browser/fileapi/file_system_dir_url_request_job.h" | 12 #include "webkit/browser/fileapi/file_system_dir_url_request_job.h" |
| 13 #include "webkit/browser/fileapi/file_system_url_request_job.h" | 13 #include "webkit/browser/fileapi/file_system_url_request_job.h" |
| 14 | 14 |
| 15 namespace fileapi { | 15 namespace fileapi { |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 | 18 |
| 19 class FileSystemProtocolHandler | 19 class FileSystemProtocolHandler |
| 20 : public net::URLRequestJobFactory::ProtocolHandler { | 20 : public net::URLRequestJobFactory::ProtocolHandler { |
| 21 public: | 21 public: |
| 22 explicit FileSystemProtocolHandler(FileSystemContext* context); | 22 FileSystemProtocolHandler(const std::string& storage_domain, |
| 23 FileSystemContext* context); | |
| 23 virtual ~FileSystemProtocolHandler(); | 24 virtual ~FileSystemProtocolHandler(); |
| 24 | 25 |
| 25 virtual net::URLRequestJob* MaybeCreateJob( | 26 virtual net::URLRequestJob* MaybeCreateJob( |
| 26 net::URLRequest* request, | 27 net::URLRequest* request, |
| 27 net::NetworkDelegate* network_delegate) const OVERRIDE; | 28 net::NetworkDelegate* network_delegate) const OVERRIDE; |
| 28 | 29 |
| 29 private: | 30 private: |
| 31 const std::string storage_domain_; | |
| 32 | |
| 30 // No scoped_refptr because |file_system_context_| is owned by the | 33 // No scoped_refptr because |file_system_context_| is owned by the |
| 31 // ProfileIOData, which also owns this ProtocolHandler. | 34 // ProfileIOData, which also owns this ProtocolHandler. |
| 32 FileSystemContext* const file_system_context_; | 35 FileSystemContext* const file_system_context_; |
| 33 | 36 |
| 34 DISALLOW_COPY_AND_ASSIGN(FileSystemProtocolHandler); | 37 DISALLOW_COPY_AND_ASSIGN(FileSystemProtocolHandler); |
| 35 }; | 38 }; |
| 36 | 39 |
| 37 FileSystemProtocolHandler::FileSystemProtocolHandler( | 40 FileSystemProtocolHandler::FileSystemProtocolHandler( |
| 41 const std::string& storage_domain, | |
| 38 FileSystemContext* context) | 42 FileSystemContext* context) |
| 39 : file_system_context_(context) { | 43 : storage_domain_(storage_domain), |
| 44 file_system_context_(context) { | |
| 40 DCHECK(file_system_context_); | 45 DCHECK(file_system_context_); |
| 41 } | 46 } |
| 42 | 47 |
| 43 FileSystemProtocolHandler::~FileSystemProtocolHandler() {} | 48 FileSystemProtocolHandler::~FileSystemProtocolHandler() {} |
| 44 | 49 |
| 45 net::URLRequestJob* FileSystemProtocolHandler::MaybeCreateJob( | 50 net::URLRequestJob* FileSystemProtocolHandler::MaybeCreateJob( |
| 46 net::URLRequest* request, net::NetworkDelegate* network_delegate) const { | 51 net::URLRequest* request, net::NetworkDelegate* network_delegate) const { |
| 47 const std::string path = request->url().path(); | 52 const std::string path = request->url().path(); |
| 48 | 53 |
| 49 // If the path ends with a /, we know it's a directory. If the path refers | 54 // If the path ends with a /, we know it's a directory. If the path refers |
| 50 // to a directory and gets dispatched to FileSystemURLRequestJob, that class | 55 // to a directory and gets dispatched to FileSystemURLRequestJob, that class |
| 51 // redirects back here, by adding a / to the URL. | 56 // redirects back here, by adding a / to the URL. |
| 52 if (!path.empty() && path[path.size() - 1] == '/') { | 57 if (!path.empty() && path[path.size() - 1] == '/') { |
| 53 return new FileSystemDirURLRequestJob( | 58 return new FileSystemDirURLRequestJob( |
| 54 request, network_delegate, file_system_context_); | 59 request, network_delegate, storage_domain_, file_system_context_); |
| 55 } | 60 } |
| 56 return new FileSystemURLRequestJob( | 61 return new FileSystemURLRequestJob( |
| 57 request, network_delegate, file_system_context_); | 62 request, network_delegate, storage_domain_, file_system_context_); |
| 58 } | 63 } |
| 59 | 64 |
| 60 } // anonymous namespace | 65 } // anonymous namespace |
| 61 | 66 |
| 62 net::URLRequestJobFactory::ProtocolHandler* | 67 net::URLRequestJobFactory::ProtocolHandler* CreateFileSystemProtocolHandler( |
| 63 CreateFileSystemProtocolHandler(FileSystemContext* context) { | 68 const std::string& storage_domain_, FileSystemContext* context) { |
|
kinuko
2014/03/13 04:19:20
nit: no trailing _ for arg
vandebo (ex-Chrome)
2014/03/13 20:19:32
Done.
| |
| 64 DCHECK(context); | 69 DCHECK(context); |
| 65 return new FileSystemProtocolHandler(context); | 70 return new FileSystemProtocolHandler(storage_domain_, context); |
| 66 } | 71 } |
| 67 | 72 |
| 68 } // namespace fileapi | 73 } // namespace fileapi |
| OLD | NEW |