| 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 43e07b7e87c29367bd9f6001bf223e465e6be79e..124b7334b0d42907afaa79223b2fb3e35931f77c 100644
|
| --- a/chrome/browser/chromeos/file_manager/filesystem_api_util.cc
|
| +++ b/chrome/browser/chromeos/file_manager/filesystem_api_util.cc
|
| @@ -87,9 +87,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(
|
| @@ -100,9 +98,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
|
|
|