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

Unified Diff: chrome/browser/extensions/api/preference/preference_api.h

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/preference_api.h
diff --git a/chrome/browser/extensions/api/preference/preference_api.h b/chrome/browser/extensions/api/preference/preference_api.h
index f3fd881d74854e1396f844b95f191cbe77c046d4..abb719914d1ba4ff5aa2b7bf53027b36055ba653 100644
--- a/chrome/browser/extensions/api/preference/preference_api.h
+++ b/chrome/browser/extensions/api/preference/preference_api.h
@@ -189,7 +189,7 @@ class GetPreferenceFunction : public PreferenceFunction {
virtual ~GetPreferenceFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class SetPreferenceFunction : public PreferenceFunction {
@@ -200,7 +200,7 @@ class SetPreferenceFunction : public PreferenceFunction {
virtual ~SetPreferenceFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ClearPreferenceFunction : public PreferenceFunction {
@@ -212,7 +212,7 @@ class ClearPreferenceFunction : public PreferenceFunction {
virtual ~ClearPreferenceFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698