| Index: chrome/browser/chromeos/file_system_provider/throttled_file_system.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/throttled_file_system.cc b/chrome/browser/chromeos/file_system_provider/throttled_file_system.cc
|
| index 7d0a3146a2b4c48c95ef387d3c7eda25054b3fa4..34d84df3f267dbf30b0c78a031215ca878bea89f 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/throttled_file_system.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/throttled_file_system.cc
|
| @@ -39,16 +39,16 @@ AbortCallback ThrottledFileSystem::GetMetadata(
|
| }
|
|
|
| AbortCallback ThrottledFileSystem::GetActions(
|
| - const base::FilePath& entry_path,
|
| + const std::set<base::FilePath>& entry_paths,
|
| const GetActionsCallback& callback) {
|
| - return file_system_->GetActions(entry_path, callback);
|
| + return file_system_->GetActions(entry_paths, callback);
|
| }
|
|
|
| AbortCallback ThrottledFileSystem::ExecuteAction(
|
| - const base::FilePath& entry_path,
|
| + const std::set<base::FilePath>& entry_paths,
|
| const std::string& action_id,
|
| const storage::AsyncFileUtil::StatusCallback& callback) {
|
| - return file_system_->ExecuteAction(entry_path, action_id, callback);
|
| + return file_system_->ExecuteAction(entry_paths, action_id, callback);
|
| }
|
|
|
| AbortCallback ThrottledFileSystem::ReadDirectory(
|
|
|