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 e75968642b9cd4b89e93018459f730e0f81da558..fe25c44b1c22613cd9087a28d01a8330ffcdb593 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 |
@@ -90,7 +90,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); |
@@ -130,7 +130,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); |
@@ -151,7 +151,7 @@ bool FileSystemProviderUnmountFunction::RunImpl() { |
return true; |
} |
-bool FileSystemProviderInternalUnmountRequestedSuccessFunction::RunImpl() { |
+bool FileSystemProviderInternalUnmountRequestedSuccessFunction::RunSync() { |
using api::file_system_provider_internal::UnmountRequestedSuccess::Params; |
scoped_ptr<Params> params(Params::Create(*args_)); |
EXTENSION_FUNCTION_VALIDATE(params); |
@@ -190,7 +190,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); |