OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/close_file.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/configure.h" |
6 | 6 |
7 #include <string> | 7 #include "base/values.h" |
8 | |
9 #include "chrome/common/extensions/api/file_system_provider.h" | 8 #include "chrome/common/extensions/api/file_system_provider.h" |
10 #include "chrome/common/extensions/api/file_system_provider_internal.h" | |
11 | 9 |
12 namespace chromeos { | 10 namespace chromeos { |
13 namespace file_system_provider { | 11 namespace file_system_provider { |
14 namespace operations { | 12 namespace operations { |
15 | 13 |
16 CloseFile::CloseFile(extensions::EventRouter* event_router, | 14 Configure::Configure(extensions::EventRouter* event_router, |
17 const ProvidedFileSystemInfo& file_system_info, | 15 const ProvidedFileSystemInfo& file_system_info, |
18 int open_request_id, | |
19 const storage::AsyncFileUtil::StatusCallback& callback) | 16 const storage::AsyncFileUtil::StatusCallback& callback) |
20 : Operation(event_router, file_system_info), | 17 : Operation(event_router, file_system_info), callback_(callback) { |
21 open_request_id_(open_request_id), | |
22 callback_(callback) { | |
23 } | 18 } |
24 | 19 |
25 CloseFile::~CloseFile() { | 20 Configure::~Configure() { |
26 } | 21 } |
27 | 22 |
28 bool CloseFile::Execute(int request_id) { | 23 bool Configure::Execute(int request_id) { |
29 using extensions::api::file_system_provider::CloseFileRequestedOptions; | 24 using extensions::api::file_system_provider::ConfigureRequestedOptions; |
30 | 25 |
31 CloseFileRequestedOptions options; | 26 ConfigureRequestedOptions options; |
32 options.file_system_id = file_system_info_.file_system_id(); | 27 options.file_system_id = file_system_info_.file_system_id(); |
33 options.request_id = request_id; | 28 options.request_id = request_id; |
34 options.open_request_id = open_request_id_; | |
35 | 29 |
36 return SendEvent( | 30 return SendEvent( |
37 request_id, | 31 request_id, |
38 extensions::api::file_system_provider::OnCloseFileRequested::kEventName, | 32 extensions::api::file_system_provider::OnConfigureRequested::kEventName, |
39 extensions::api::file_system_provider::OnCloseFileRequested::Create( | 33 extensions::api::file_system_provider::OnConfigureRequested::Create( |
40 options)); | 34 options)); |
41 } | 35 } |
42 | 36 |
43 void CloseFile::OnSuccess(int /* request_id */, | 37 void Configure::OnSuccess(int /* request_id */, |
44 scoped_ptr<RequestValue> result, | 38 scoped_ptr<RequestValue> /* result */, |
45 bool has_more) { | 39 bool /* has_more */) { |
46 callback_.Run(base::File::FILE_OK); | 40 callback_.Run(base::File::FILE_OK); |
47 } | 41 } |
48 | 42 |
49 void CloseFile::OnError(int /* request_id */, | 43 void Configure::OnError(int /* request_id */, |
50 scoped_ptr<RequestValue> /* result */, | 44 scoped_ptr<RequestValue> /* result */, |
51 base::File::Error error) { | 45 base::File::Error error) { |
52 callback_.Run(error); | 46 callback_.Run(error); |
53 } | 47 } |
54 | 48 |
55 } // namespace operations | 49 } // namespace operations |
56 } // namespace file_system_provider | 50 } // namespace file_system_provider |
57 } // namespace chromeos | 51 } // namespace chromeos |
OLD | NEW |