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

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: fix bookmarks 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 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);

Powered by Google App Engine
This is Rietveld 408576698