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/add_watcher.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 AddWatcher::AddWatcher(extensions::EventRouter* event_router, |
17 const ProvidedFileSystemInfo& file_system_info, | 17 const ProvidedFileSystemInfo& file_system_info, |
18 const base::FilePath& file_path, | 18 const base::FilePath& entry_path, |
| 19 bool recursive, |
19 const storage::AsyncFileUtil::StatusCallback& callback) | 20 const storage::AsyncFileUtil::StatusCallback& callback) |
20 : Operation(event_router, file_system_info), | 21 : Operation(event_router, file_system_info), |
21 file_path_(file_path), | 22 entry_path_(entry_path), |
| 23 recursive_(recursive), |
22 callback_(callback) { | 24 callback_(callback) { |
23 } | 25 } |
24 | 26 |
25 CreateFile::~CreateFile() { | 27 AddWatcher::~AddWatcher() { |
26 } | 28 } |
27 | 29 |
28 bool CreateFile::Execute(int request_id) { | 30 bool AddWatcher::Execute(int request_id) { |
29 using extensions::api::file_system_provider::CreateFileRequestedOptions; | 31 using extensions::api::file_system_provider::AddWatcherRequestedOptions; |
30 | 32 |
31 if (!file_system_info_.writable()) | 33 AddWatcherRequestedOptions options; |
32 return false; | |
33 | |
34 CreateFileRequestedOptions options; | |
35 options.file_system_id = file_system_info_.file_system_id(); | 34 options.file_system_id = file_system_info_.file_system_id(); |
36 options.request_id = request_id; | 35 options.request_id = request_id; |
37 options.file_path = file_path_.AsUTF8Unsafe(); | 36 options.entry_path = entry_path_.AsUTF8Unsafe(); |
| 37 options.recursive = recursive_; |
38 | 38 |
39 return SendEvent( | 39 return SendEvent( |
40 request_id, | 40 request_id, |
41 extensions::api::file_system_provider::OnCreateFileRequested::kEventName, | 41 extensions::api::file_system_provider::OnAddWatcherRequested::kEventName, |
42 extensions::api::file_system_provider::OnCreateFileRequested::Create( | 42 extensions::api::file_system_provider::OnAddWatcherRequested::Create( |
43 options)); | 43 options)); |
44 } | 44 } |
45 | 45 |
46 void CreateFile::OnSuccess(int /* request_id */, | 46 void AddWatcher::OnSuccess(int /* request_id */, |
47 scoped_ptr<RequestValue> /* result */, | 47 scoped_ptr<RequestValue> /* result */, |
48 bool has_more) { | 48 bool has_more) { |
49 callback_.Run(base::File::FILE_OK); | 49 callback_.Run(base::File::FILE_OK); |
50 } | 50 } |
51 | 51 |
52 void CreateFile::OnError(int /* request_id */, | 52 void AddWatcher::OnError(int /* request_id */, |
53 scoped_ptr<RequestValue> /* result */, | 53 scoped_ptr<RequestValue> /* result */, |
54 base::File::Error error) { | 54 base::File::Error error) { |
55 callback_.Run(error); | 55 callback_.Run(error); |
56 } | 56 } |
57 | 57 |
58 } // namespace operations | 58 } // namespace operations |
59 } // namespace file_system_provider | 59 } // namespace file_system_provider |
60 } // namespace chromeos | 60 } // namespace chromeos |
OLD | NEW |