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

Unified Diff: chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc

Issue 252653002: Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
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);

Powered by Google App Engine
This is Rietveld 408576698