| Index: chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
|
| index b4e949dba4f108e364d4fbe2fb6420493006317a..732e91674ee064e056805e0d511ace25bf77de37 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
|
| @@ -6,6 +6,7 @@
|
| #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FAKE_PROVIDED_FILE_SYSTEM_H_
|
|
|
| #include <map>
|
| +#include <set>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -86,10 +87,10 @@ class FakeProvidedFileSystem : public ProvidedFileSystemInterface {
|
| ProvidedFileSystemInterface::MetadataFieldMask fields,
|
| const ProvidedFileSystemInterface::GetMetadataCallback& callback)
|
| override;
|
| - AbortCallback GetActions(const base::FilePath& entry_path,
|
| + AbortCallback GetActions(const std::set<base::FilePath>& entry_paths,
|
| const GetActionsCallback& callback) override;
|
| AbortCallback ExecuteAction(
|
| - const base::FilePath& entry_path,
|
| + const std::set<base::FilePath>& entry_paths,
|
| const std::string& action_id,
|
| const storage::AsyncFileUtil::StatusCallback& callback) override;
|
| AbortCallback ReadDirectory(
|
|
|