Index: chrome/browser/chromeos/file_system_provider/operations/get_actions.h |
diff --git a/chrome/browser/chromeos/file_system_provider/operations/get_actions.h b/chrome/browser/chromeos/file_system_provider/operations/get_actions.h |
index 29caefdce71366c26f7d6101f3c22fcc71dbfdce..cb93543e7efc57ee9013e46c9546b12e493acd60 100644 |
--- a/chrome/browser/chromeos/file_system_provider/operations/get_actions.h |
+++ b/chrome/browser/chromeos/file_system_provider/operations/get_actions.h |
@@ -5,6 +5,8 @@ |
#ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H_ |
#define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_GET_ACTIONS_H_ |
+#include <vector> |
+ |
#include "base/files/file.h" |
#include "base/memory/scoped_ptr.h" |
#include "chrome/browser/chromeos/file_system_provider/operations/operation.h" |
@@ -31,7 +33,7 @@ class GetActions : public Operation { |
public: |
GetActions(extensions::EventRouter* event_router, |
const ProvidedFileSystemInfo& file_system_info, |
- const base::FilePath& entry_path, |
+ const std::vector<base::FilePath>& entry_paths, |
const ProvidedFileSystemInterface::GetActionsCallback& callback); |
~GetActions() override; |
@@ -45,7 +47,7 @@ class GetActions : public Operation { |
base::File::Error error) override; |
private: |
- base::FilePath entry_path_; |
+ const std::vector<base::FilePath> entry_paths_; |
const ProvidedFileSystemInterface::GetActionsCallback callback_; |
DISALLOW_COPY_AND_ASSIGN(GetActions); |