| Index: chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc
|
| index 90e3667e605b3e547f21129565bc6ec2544fda00..cb79ee2c7a9281899672e5aba4a68ecc620f8ec6 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc
|
| @@ -110,7 +110,7 @@ AbortCallback FakeProvidedFileSystem::GetMetadata(
|
| }
|
|
|
| AbortCallback FakeProvidedFileSystem::GetActions(
|
| - const base::FilePath& entry_path,
|
| + const std::set<base::FilePath>& entry_paths,
|
| const ProvidedFileSystemInterface::GetActionsCallback& callback) {
|
| // TODO(mtomasz): Implement it once needed.
|
| const std::vector<Action> actions;
|
| @@ -118,7 +118,7 @@ AbortCallback FakeProvidedFileSystem::GetActions(
|
| }
|
|
|
| AbortCallback FakeProvidedFileSystem::ExecuteAction(
|
| - const base::FilePath& entry_path,
|
| + const std::set<base::FilePath>& entry_paths,
|
| const std::string& action_id,
|
| const storage::AsyncFileUtil::StatusCallback& callback) {
|
| // TODO(mtomasz): Implement it once needed.
|
|
|