Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: chrome/browser/chromeos/file_system_provider/operations/execute_action.cc

Issue 1239043002: Add support for actions for multiple file selection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed externs. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "chrome/browser/chromeos/file_system_provider/operations/execute_action .h" 5 #include "chrome/browser/chromeos/file_system_provider/operations/execute_action .h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 9
10 #include "chrome/common/extensions/api/file_system_provider.h" 10 #include "chrome/common/extensions/api/file_system_provider.h"
11 #include "chrome/common/extensions/api/file_system_provider_internal.h" 11 #include "chrome/common/extensions/api/file_system_provider_internal.h"
12 12
13 namespace chromeos { 13 namespace chromeos {
14 namespace file_system_provider { 14 namespace file_system_provider {
15 namespace operations { 15 namespace operations {
16 16
17 ExecuteAction::ExecuteAction( 17 ExecuteAction::ExecuteAction(
18 extensions::EventRouter* event_router, 18 extensions::EventRouter* event_router,
19 const ProvidedFileSystemInfo& file_system_info, 19 const ProvidedFileSystemInfo& file_system_info,
20 const base::FilePath& entry_path, 20 const std::vector<base::FilePath>& entry_paths,
21 const std::string& action_id, 21 const std::string& action_id,
22 const storage::AsyncFileUtil::StatusCallback& callback) 22 const storage::AsyncFileUtil::StatusCallback& callback)
23 : Operation(event_router, file_system_info), 23 : Operation(event_router, file_system_info),
24 entry_path_(entry_path), 24 entry_paths_(entry_paths),
25 action_id_(action_id), 25 action_id_(action_id),
26 callback_(callback) { 26 callback_(callback) {}
27 }
28 27
29 ExecuteAction::~ExecuteAction() { 28 ExecuteAction::~ExecuteAction() {
30 } 29 }
31 30
32 bool ExecuteAction::Execute(int request_id) { 31 bool ExecuteAction::Execute(int request_id) {
33 using extensions::api::file_system_provider::ExecuteActionRequestedOptions; 32 using extensions::api::file_system_provider::ExecuteActionRequestedOptions;
34 33
35 ExecuteActionRequestedOptions options; 34 ExecuteActionRequestedOptions options;
36 options.file_system_id = file_system_info_.file_system_id(); 35 options.file_system_id = file_system_info_.file_system_id();
37 options.request_id = request_id; 36 options.request_id = request_id;
38 options.entry_path = entry_path_.AsUTF8Unsafe(); 37 for (const auto& entry_path : entry_paths_)
38 options.entry_paths.push_back(entry_path.AsUTF8Unsafe());
39 options.action_id = action_id_; 39 options.action_id = action_id_;
40 40
41 return SendEvent( 41 return SendEvent(
42 request_id, 42 request_id,
43 extensions::events::FILE_SYSTEM_PROVIDER_ON_EXECUTE_ACTION_REQUESTED, 43 extensions::events::FILE_SYSTEM_PROVIDER_ON_EXECUTE_ACTION_REQUESTED,
44 extensions::api::file_system_provider::OnExecuteActionRequested:: 44 extensions::api::file_system_provider::OnExecuteActionRequested::
45 kEventName, 45 kEventName,
46 extensions::api::file_system_provider::OnExecuteActionRequested::Create( 46 extensions::api::file_system_provider::OnExecuteActionRequested::Create(
47 options)); 47 options));
48 } 48 }
49 49
50 void ExecuteAction::OnSuccess(int /* request_id */, 50 void ExecuteAction::OnSuccess(int /* request_id */,
51 scoped_ptr<RequestValue> result, 51 scoped_ptr<RequestValue> result,
52 bool has_more) { 52 bool has_more) {
53 callback_.Run(base::File::FILE_OK); 53 callback_.Run(base::File::FILE_OK);
54 } 54 }
55 55
56 void ExecuteAction::OnError(int /* request_id */, 56 void ExecuteAction::OnError(int /* request_id */,
57 scoped_ptr<RequestValue> /* result */, 57 scoped_ptr<RequestValue> /* result */,
58 base::File::Error error) { 58 base::File::Error error) {
59 callback_.Run(error); 59 callback_.Run(error);
60 } 60 }
61 61
62 } // namespace operations 62 } // namespace operations
63 } // namespace file_system_provider 63 } // namespace file_system_provider
64 } // namespace chromeos 64 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698