| 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..331aa019ceb5792411f05dd704c5a4e929ff56e9 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::vector<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::vector<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( | 
|  |