| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/chromeos/file_system_provider/operations/create_file.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/create_file.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "chrome/common/extensions/api/file_system_provider.h" | 9 #include "chrome/common/extensions/api/file_system_provider.h" |
| 10 #include "chrome/common/extensions/api/file_system_provider_internal.h" | 10 #include "chrome/common/extensions/api/file_system_provider_internal.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 namespace file_system_provider { | 13 namespace file_system_provider { |
| 14 namespace operations { | 14 namespace operations { |
| 15 | 15 |
| 16 CreateFile::CreateFile(extensions::EventRouter* event_router, | 16 template <int source> |
| 17 const ProvidedFileSystemInfo& file_system_info, | 17 CreateFile<source>::CreateFile( |
| 18 const base::FilePath& file_path, | 18 typename Operation<source>::EventRouterType* event_router, |
| 19 const storage::AsyncFileUtil::StatusCallback& callback) | 19 const ProvidedFileSystemInfo& file_system_info, |
| 20 : Operation(event_router, file_system_info), | 20 const base::FilePath& file_path, |
| 21 const storage::AsyncFileUtil::StatusCallback& callback) |
| 22 : Operation<source>(event_router, file_system_info), |
| 21 file_path_(file_path), | 23 file_path_(file_path), |
| 22 callback_(callback) { | 24 callback_(callback) { |
| 23 } | 25 } |
| 24 | 26 |
| 25 CreateFile::~CreateFile() { | 27 template <int source> |
| 28 CreateFile<source>::~CreateFile() { |
| 26 } | 29 } |
| 27 | 30 |
| 28 bool CreateFile::Execute(int request_id) { | 31 template <int source> |
| 32 bool CreateFile<source>::Execute(int request_id) { |
| 29 using extensions::api::file_system_provider::CreateFileRequestedOptions; | 33 using extensions::api::file_system_provider::CreateFileRequestedOptions; |
| 30 | 34 |
| 31 if (!file_system_info_.writable()) | 35 if (!this->file_system_info_.writable()) |
| 32 return false; | 36 return false; |
| 33 | 37 |
| 34 CreateFileRequestedOptions options; | 38 CreateFileRequestedOptions options; |
| 35 options.file_system_id = file_system_info_.file_system_id(); | 39 options.file_system_id = this->file_system_info_.file_system_id(); |
| 36 options.request_id = request_id; | 40 options.request_id = request_id; |
| 37 options.file_path = file_path_.AsUTF8Unsafe(); | 41 options.file_path = file_path_.AsUTF8Unsafe(); |
| 38 | 42 |
| 39 return SendEvent( | 43 return this->SendEvent( |
| 40 request_id, | 44 request_id, |
| 41 extensions::api::file_system_provider::OnCreateFileRequested::kEventName, | 45 extensions::api::file_system_provider::OnCreateFileRequested::kEventName, |
| 42 extensions::api::file_system_provider::OnCreateFileRequested::Create( | 46 extensions::api::file_system_provider::OnCreateFileRequested::Create( |
| 43 options)); | 47 options)); |
| 44 } | 48 } |
| 45 | 49 |
| 46 void CreateFile::OnSuccess(int /* request_id */, | 50 template <int source> |
| 47 scoped_ptr<RequestValue> /* result */, | 51 void CreateFile<source>::OnSuccess(int /* request_id */, |
| 48 bool has_more) { | 52 scoped_ptr<RequestValue> /* result */, |
| 53 bool has_more) { |
| 49 callback_.Run(base::File::FILE_OK); | 54 callback_.Run(base::File::FILE_OK); |
| 50 } | 55 } |
| 51 | 56 |
| 52 void CreateFile::OnError(int /* request_id */, | 57 template <int source> |
| 53 scoped_ptr<RequestValue> /* result */, | 58 void CreateFile<source>::OnError(int /* request_id */, |
| 54 base::File::Error error) { | 59 scoped_ptr<RequestValue> /* result */, |
| 60 base::File::Error error) { |
| 55 callback_.Run(error); | 61 callback_.Run(error); |
| 56 } | 62 } |
| 57 | 63 |
| 64 template class CreateFile<Source_Type::extension>; |
| 65 template class CreateFile<Source_Type::plugin>; |
| 66 |
| 58 } // namespace operations | 67 } // namespace operations |
| 59 } // namespace file_system_provider | 68 } // namespace file_system_provider |
| 60 } // namespace chromeos | 69 } // namespace chromeos |
| OLD | NEW |