Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6090)

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/get_actions.h

Issue 1239043002: Add support for actions for multiple file selection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed externs. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698