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

Unified Diff: chrome/browser/extensions/api/preference/chrome_direct_setting.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/extensions/api/preference/chrome_direct_setting.cc
diff --git a/chrome/browser/extensions/api/preference/chrome_direct_setting.cc b/chrome/browser/extensions/api/preference/chrome_direct_setting.cc
index 3c3aa2939a06100ff1161918e90b8a67838cb661..44d89b220f8ac69eb362a8c6a8328f1723e7a7a3 100644
--- a/chrome/browser/extensions/api/preference/chrome_direct_setting.cc
+++ b/chrome/browser/extensions/api/preference/chrome_direct_setting.cc
@@ -29,7 +29,7 @@ bool DirectSettingFunctionBase::IsCalledFromComponentExtension() {
GetDirectSettingFunction::GetDirectSettingFunction() {}
-bool GetDirectSettingFunction::RunImpl() {
+bool GetDirectSettingFunction::RunSync() {
EXTENSION_FUNCTION_VALIDATE(IsCalledFromComponentExtension());
std::string pref_key;
@@ -53,7 +53,7 @@ GetDirectSettingFunction::~GetDirectSettingFunction() {}
SetDirectSettingFunction::SetDirectSettingFunction() {}
-bool SetDirectSettingFunction::RunImpl() {
+bool SetDirectSettingFunction::RunSync() {
EXTENSION_FUNCTION_VALIDATE(IsCalledFromComponentExtension());
std::string pref_key;
@@ -84,7 +84,7 @@ SetDirectSettingFunction::~SetDirectSettingFunction() {}
ClearDirectSettingFunction::ClearDirectSettingFunction() {}
-bool ClearDirectSettingFunction::RunImpl() {
+bool ClearDirectSettingFunction::RunSync() {
EXTENSION_FUNCTION_VALIDATE(IsCalledFromComponentExtension());
std::string pref_key;

Powered by Google App Engine
This is Rietveld 408576698