Index: chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc |
diff --git a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc |
index a788cd7031bebd147f95255f6c4487b3341dbd8d..f6bd6376e6dd209b9109a6a88b12b820f067cdd5 100644 |
--- a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc |
+++ b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc |
@@ -340,7 +340,7 @@ void SyncFileSystemGetUsageAndQuotaFunction::DidGetUsageAndQuota( |
SendResponse(true); |
} |
-bool SyncFileSystemSetConflictResolutionPolicyFunction::RunImpl() { |
+bool SyncFileSystemSetConflictResolutionPolicyFunction::RunSync() { |
std::string policy_string; |
EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &policy_string)); |
ConflictResolutionPolicy policy = ExtensionEnumToConflictResolutionPolicy( |
@@ -362,7 +362,7 @@ bool SyncFileSystemSetConflictResolutionPolicyFunction::RunImpl() { |
return true; |
} |
-bool SyncFileSystemGetConflictResolutionPolicyFunction::RunImpl() { |
+bool SyncFileSystemGetConflictResolutionPolicyFunction::RunSync() { |
sync_file_system::SyncFileSystemService* service = |
GetSyncFileSystemService(GetProfile()); |
DCHECK(service); |
@@ -374,7 +374,7 @@ bool SyncFileSystemGetConflictResolutionPolicyFunction::RunImpl() { |
return true; |
} |
-bool SyncFileSystemGetServiceStatusFunction::RunImpl() { |
+bool SyncFileSystemGetServiceStatusFunction::RunSync() { |
sync_file_system::SyncFileSystemService* service = |
GetSyncFileSystemService(GetProfile()); |
results_ = api::sync_file_system::GetServiceStatus::Results::Create( |