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

Unified Diff: chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc

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/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..d218101220613bd412b03e8aaea52fb00866842d 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::vector<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::vector<base::FilePath>& entry_paths,
const std::string& action_id,
const storage::AsyncFileUtil::StatusCallback& callback) {
// TODO(mtomasz): Implement it once needed.

Powered by Google App Engine
This is Rietveld 408576698