| 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
|
|
|