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

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

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: Fixed. 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
« apps/launcher.cc ('K') | « chrome/browser/chromeos/file_manager/file_tasks.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/file_manager/filesystem_api_util.cc
diff --git a/chrome/browser/chromeos/file_manager/filesystem_api_util.cc b/chrome/browser/chromeos/file_manager/filesystem_api_util.cc
index 04dc1d5febe6aefae7fb5a84e25449f8ab380ac9..67a7f6e7c4d4bb466cdf1066077e003c5f549408 100644
--- a/chrome/browser/chromeos/file_manager/filesystem_api_util.cc
+++ b/chrome/browser/chromeos/file_manager/filesystem_api_util.cc
@@ -126,9 +126,7 @@ void IsNonNativeLocalPathDirectory(
// TODO(kinaba): support other types of volumes besides Drive.
drive::util::CheckDirectoryExists(
- profile,
- path,
- base::Bind(&CheckDirectoryAfterDriveCheck, callback));
+ profile, path, base::Bind(&CheckDirectoryAfterDriveCheck, callback));
}
void PrepareNonNativeLocalPathWritableFile(
@@ -139,9 +137,7 @@ void PrepareNonNativeLocalPathWritableFile(
// TODO(kinaba): support other types of volumes besides Drive.
drive::util::PrepareWritableFileAndRun(
- profile,
- path,
- base::Bind(&CheckWritableAfterDriveCheck, callback));
+ profile, path, base::Bind(&CheckWritableAfterDriveCheck, callback));
}
} // namespace util
« apps/launcher.cc ('K') | « chrome/browser/chromeos/file_manager/file_tasks.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698