OLD | NEW |
1 // Copyright 2015 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 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H_ |
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H_ |
7 | 7 |
| 8 #include <vector> |
| 9 |
8 #include "base/files/file.h" | 10 #include "base/files/file.h" |
9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/browser/chromeos/file_system_provider/operations/operation.h" | 12 #include "chrome/browser/chromeos/file_system_provider/operations/operation.h" |
11 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info
.h" | 13 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info
.h" |
12 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_inte
rface.h" | 14 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_inte
rface.h" |
13 #include "chrome/browser/chromeos/file_system_provider/request_value.h" | 15 #include "chrome/browser/chromeos/file_system_provider/request_value.h" |
14 #include "chrome/common/extensions/api/file_system_provider_internal.h" | 16 #include "chrome/common/extensions/api/file_system_provider_internal.h" |
15 | 17 |
16 namespace base { | 18 namespace base { |
17 class FilePath; | 19 class FilePath; |
18 } // namespace base | 20 } // namespace base |
19 | 21 |
20 namespace extensions { | 22 namespace extensions { |
21 class EventRouter; | 23 class EventRouter; |
22 } // namespace extensions | 24 } // namespace extensions |
23 | 25 |
24 namespace chromeos { | 26 namespace chromeos { |
25 namespace file_system_provider { | 27 namespace file_system_provider { |
26 namespace operations { | 28 namespace operations { |
27 | 29 |
28 // Bridge between fileapi get actions operation and providing extension's get | 30 // Bridge between fileapi get actions operation and providing extension's get |
29 // actions request. Created per request. | 31 // actions request. Created per request. |
30 class GetActions : public Operation { | 32 class GetActions : public Operation { |
31 public: | 33 public: |
32 GetActions(extensions::EventRouter* event_router, | 34 GetActions(extensions::EventRouter* event_router, |
33 const ProvidedFileSystemInfo& file_system_info, | 35 const ProvidedFileSystemInfo& file_system_info, |
34 const base::FilePath& entry_path, | 36 const std::vector<base::FilePath>& entry_paths, |
35 const ProvidedFileSystemInterface::GetActionsCallback& callback); | 37 const ProvidedFileSystemInterface::GetActionsCallback& callback); |
36 ~GetActions() override; | 38 ~GetActions() override; |
37 | 39 |
38 // Operation overrides. | 40 // Operation overrides. |
39 bool Execute(int request_id) override; | 41 bool Execute(int request_id) override; |
40 void OnSuccess(int request_id, | 42 void OnSuccess(int request_id, |
41 scoped_ptr<RequestValue> result, | 43 scoped_ptr<RequestValue> result, |
42 bool has_more) override; | 44 bool has_more) override; |
43 void OnError(int request_id, | 45 void OnError(int request_id, |
44 scoped_ptr<RequestValue> result, | 46 scoped_ptr<RequestValue> result, |
45 base::File::Error error) override; | 47 base::File::Error error) override; |
46 | 48 |
47 private: | 49 private: |
48 base::FilePath entry_path_; | 50 const std::vector<base::FilePath> entry_paths_; |
49 const ProvidedFileSystemInterface::GetActionsCallback callback_; | 51 const ProvidedFileSystemInterface::GetActionsCallback callback_; |
50 | 52 |
51 DISALLOW_COPY_AND_ASSIGN(GetActions); | 53 DISALLOW_COPY_AND_ASSIGN(GetActions); |
52 }; | 54 }; |
53 | 55 |
54 } // namespace operations | 56 } // namespace operations |
55 } // namespace file_system_provider | 57 } // namespace file_system_provider |
56 } // namespace chromeos | 58 } // namespace chromeos |
57 | 59 |
58 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H
_ | 60 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H
_ |
OLD | NEW |