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/copy_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 |
16 CopyEntry::CopyEntry(extensions::EventRouter* event_router, | 16 MoveEntry::MoveEntry(extensions::EventRouter* event_router, |
17 const ProvidedFileSystemInfo& file_system_info, | 17 const ProvidedFileSystemInfo& file_system_info, |
18 const base::FilePath& source_path, | 18 const base::FilePath& source_path, |
19 const base::FilePath& target_path, | 19 const base::FilePath& target_path, |
20 const fileapi::AsyncFileUtil::StatusCallback& callback) | 20 const fileapi::AsyncFileUtil::StatusCallback& callback) |
21 : Operation(event_router, file_system_info), | 21 : Operation(event_router, file_system_info), |
22 source_path_(source_path), | 22 source_path_(source_path), |
23 target_path_(target_path), | 23 target_path_(target_path), |
24 callback_(callback) { | 24 callback_(callback) { |
25 } | 25 } |
26 | 26 |
27 CopyEntry::~CopyEntry() { | 27 MoveEntry::~MoveEntry() { |
28 } | 28 } |
29 | 29 |
30 bool CopyEntry::Execute(int request_id) { | 30 bool MoveEntry::Execute(int request_id) { |
31 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue); | 31 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue); |
32 values->SetString("sourcePath", source_path_.AsUTF8Unsafe()); | 32 values->SetString("sourcePath", source_path_.AsUTF8Unsafe()); |
33 values->SetString("targetPath", target_path_.AsUTF8Unsafe()); | 33 values->SetString("targetPath", target_path_.AsUTF8Unsafe()); |
34 | 34 |
35 return SendEvent( | 35 return SendEvent( |
36 request_id, | 36 request_id, |
37 extensions::api::file_system_provider::OnCopyEntryRequested::kEventName, | 37 extensions::api::file_system_provider::OnMoveEntryRequested::kEventName, |
38 values.Pass()); | 38 values.Pass()); |
39 } | 39 } |
40 | 40 |
41 void CopyEntry::OnSuccess(int /* request_id */, | 41 void MoveEntry::OnSuccess(int /* request_id */, |
42 scoped_ptr<RequestValue> /* result */, | 42 scoped_ptr<RequestValue> /* result */, |
43 bool has_more) { | 43 bool has_more) { |
44 callback_.Run(base::File::FILE_OK); | 44 callback_.Run(base::File::FILE_OK); |
45 } | 45 } |
46 | 46 |
47 void CopyEntry::OnError(int /* request_id */, | 47 void MoveEntry::OnError(int /* request_id */, |
48 scoped_ptr<RequestValue> /* result */, | 48 scoped_ptr<RequestValue> /* result */, |
49 base::File::Error error) { | 49 base::File::Error error) { |
50 callback_.Run(error); | 50 callback_.Run(error); |
51 } | 51 } |
52 | 52 |
53 } // namespace operations | 53 } // namespace operations |
54 } // namespace file_system_provider | 54 } // namespace file_system_provider |
55 } // namespace chromeos | 55 } // namespace chromeos |
OLD | NEW |