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

Unified Diff: chrome/browser/chromeos/file_manager/filesystem_api_util.h

Issue 300063006: Files.app: Let Files.app pass mutliple files to file handlers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 7 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_manager/filesystem_api_util.h
diff --git a/chrome/browser/chromeos/file_manager/filesystem_api_util.h b/chrome/browser/chromeos/file_manager/filesystem_api_util.h
index cb4a7d3cf72daa146f2e2eb98da8d05e9d78738e..f7de6f32061582b135c08c2f36bce39642dbf05e 100644
--- a/chrome/browser/chromeos/file_manager/filesystem_api_util.h
+++ b/chrome/browser/chromeos/file_manager/filesystem_api_util.h
@@ -35,17 +35,15 @@ void GetSpecialPathMimeType(
// Checks whether the |path| points to a directory, and asynchronously sends
// the result to |callback|.
-void IsSpecialPathDirectory(
- Profile* profile,
- const base::FilePath& path,
- const base::Callback<void(bool)>& callback);
+void IsSpecialPathDirectory(Profile* profile,
+ const base::FilePath& path,
+ const base::Callback<void(bool)>& callback);
// Prepares a writable file at |path|, i.e., creates a file there if it didn't
// exist, and asynchronously sends to |callback| whether it succeeded.
-void PrepareSpecialPathWritableFile(
- Profile* profile,
- const base::FilePath& path,
- const base::Callback<void(bool)>& callback);
+void PrepareSpecialPathWritableFile(Profile* profile,
+ const base::FilePath& path,
+ const base::Callback<void(bool)>& callback);
} // namespace util
} // namespace file_manager

Powered by Google App Engine
This is Rietveld 408576698