| 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/move_entry.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/move_entry.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 template <int source> |
| 16 MoveEntry::MoveEntry(extensions::EventRouter* event_router, | 16 MoveEntry<source>::MoveEntry( |
| 17 const ProvidedFileSystemInfo& file_system_info, | 17 typename Operation<source>::EventRouterType* event_router, |
| 18 const base::FilePath& source_path, | 18 const ProvidedFileSystemInfo& file_system_info, |
| 19 const base::FilePath& target_path, | 19 const base::FilePath& source_path, |
| 20 const storage::AsyncFileUtil::StatusCallback& callback) | 20 const base::FilePath& target_path, |
| 21 : Operation(event_router, file_system_info), | 21 const storage::AsyncFileUtil::StatusCallback& callback) |
| 22 : Operation<source>(event_router, file_system_info), |
| 22 source_path_(source_path), | 23 source_path_(source_path), |
| 23 target_path_(target_path), | 24 target_path_(target_path), |
| 24 callback_(callback) { | 25 callback_(callback) { |
| 25 } | 26 } |
| 26 | 27 |
| 27 MoveEntry::~MoveEntry() { | 28 template <int source> |
| 29 MoveEntry<source>::~MoveEntry() { |
| 28 } | 30 } |
| 29 | 31 |
| 30 bool MoveEntry::Execute(int request_id) { | 32 template <int source> |
| 33 bool MoveEntry<source>::Execute(int request_id) { |
| 31 using extensions::api::file_system_provider::MoveEntryRequestedOptions; | 34 using extensions::api::file_system_provider::MoveEntryRequestedOptions; |
| 32 | 35 |
| 33 if (!file_system_info_.writable()) | 36 if (!this->file_system_info_.writable()) |
| 34 return false; | 37 return false; |
| 35 | 38 |
| 36 MoveEntryRequestedOptions options; | 39 MoveEntryRequestedOptions options; |
| 37 options.file_system_id = file_system_info_.file_system_id(); | 40 options.file_system_id = this->file_system_info_.file_system_id(); |
| 38 options.request_id = request_id; | 41 options.request_id = request_id; |
| 39 options.source_path = source_path_.AsUTF8Unsafe(); | 42 options.source_path = source_path_.AsUTF8Unsafe(); |
| 40 options.target_path = target_path_.AsUTF8Unsafe(); | 43 options.target_path = target_path_.AsUTF8Unsafe(); |
| 41 | 44 |
| 42 return SendEvent( | 45 return this->SendEvent( |
| 43 request_id, | 46 request_id, |
| 44 extensions::api::file_system_provider::OnMoveEntryRequested::kEventName, | 47 extensions::api::file_system_provider::OnMoveEntryRequested::kEventName, |
| 45 extensions::api::file_system_provider::OnMoveEntryRequested::Create( | 48 extensions::api::file_system_provider::OnMoveEntryRequested::Create( |
| 46 options)); | 49 options)); |
| 47 } | 50 } |
| 48 | 51 |
| 49 void MoveEntry::OnSuccess(int /* request_id */, | 52 template <int source> |
| 50 scoped_ptr<RequestValue> /* result */, | 53 void MoveEntry<source>::OnSuccess(int /* request_id */, |
| 51 bool has_more) { | 54 scoped_ptr<RequestValue> /* result */, |
| 55 bool has_more) { |
| 52 callback_.Run(base::File::FILE_OK); | 56 callback_.Run(base::File::FILE_OK); |
| 53 } | 57 } |
| 54 | 58 |
| 55 void MoveEntry::OnError(int /* request_id */, | 59 template <int source> |
| 56 scoped_ptr<RequestValue> /* result */, | 60 void MoveEntry<source>::OnError(int /* request_id */, |
| 57 base::File::Error error) { | 61 scoped_ptr<RequestValue> /* result */, |
| 62 base::File::Error error) { |
| 58 callback_.Run(error); | 63 callback_.Run(error); |
| 59 } | 64 } |
| 60 | 65 |
| 66 template class MoveEntry<Source_Type::extension>; |
| 67 template class MoveEntry<Source_Type::plugin>; |
| 68 |
| 61 } // namespace operations | 69 } // namespace operations |
| 62 } // namespace file_system_provider | 70 } // namespace file_system_provider |
| 63 } // namespace chromeos | 71 } // namespace chromeos |
| OLD | NEW |