| Index: chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc
|
| diff --git a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc
|
| index 52ebdd87612d808a8cc5e2c9bea0f43cd8cd455a..f05a1d59d4e55eb6a591f1a6a6fc91bba8c7b78b 100644
|
| --- a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc
|
| +++ b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc
|
| @@ -88,7 +88,7 @@ base::File::Error ProviderErrorToFileError(
|
|
|
| } // namespace
|
|
|
| -bool FileSystemProviderMountFunction::RunImpl() {
|
| +bool FileSystemProviderMountFunction::RunSync() {
|
| using api::file_system_provider::Mount::Params;
|
| const scoped_ptr<Params> params(Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
| @@ -128,7 +128,7 @@ bool FileSystemProviderMountFunction::RunImpl() {
|
| return true;
|
| }
|
|
|
| -bool FileSystemProviderUnmountFunction::RunImpl() {
|
| +bool FileSystemProviderUnmountFunction::RunSync() {
|
| using api::file_system_provider::Unmount::Params;
|
| const scoped_ptr<Params> params(Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
| @@ -149,7 +149,7 @@ bool FileSystemProviderUnmountFunction::RunImpl() {
|
| return true;
|
| }
|
|
|
| -bool FileSystemProviderInternalUnmountRequestedSuccessFunction::RunImpl() {
|
| +bool FileSystemProviderInternalUnmountRequestedSuccessFunction::RunSync() {
|
| using api::file_system_provider_internal::UnmountRequestedSuccess::Params;
|
| const scoped_ptr<Params> params(Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
| @@ -186,7 +186,7 @@ bool FileSystemProviderInternalUnmountRequestedSuccessFunction::RunImpl() {
|
| return true;
|
| }
|
|
|
| -bool FileSystemProviderInternalUnmountRequestedErrorFunction::RunImpl() {
|
| +bool FileSystemProviderInternalUnmountRequestedErrorFunction::RunSync() {
|
| using api::file_system_provider_internal::UnmountRequestedError::Params;
|
| const scoped_ptr<Params> params(Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
|
|