| Index: chrome/browser/extensions/api/preference/preference_api.cc
|
| diff --git a/chrome/browser/extensions/api/preference/preference_api.cc b/chrome/browser/extensions/api/preference/preference_api.cc
|
| index 26a088fb5ec006a06bfa9fa00df18c24b6d4a57a..2f9d89eeecbd5710c0967725f7ec12cf7f160dfb 100644
|
| --- a/chrome/browser/extensions/api/preference/preference_api.cc
|
| +++ b/chrome/browser/extensions/api/preference/preference_api.cc
|
| @@ -521,7 +521,7 @@ bool PreferenceFunction::ValidateBrowserPref(
|
|
|
| GetPreferenceFunction::~GetPreferenceFunction() { }
|
|
|
| -bool GetPreferenceFunction::RunImpl() {
|
| +bool GetPreferenceFunction::RunSync() {
|
| std::string pref_key;
|
| EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &pref_key));
|
| base::DictionaryValue* details = NULL;
|
| @@ -583,7 +583,7 @@ bool GetPreferenceFunction::RunImpl() {
|
|
|
| SetPreferenceFunction::~SetPreferenceFunction() { }
|
|
|
| -bool SetPreferenceFunction::RunImpl() {
|
| +bool SetPreferenceFunction::RunSync() {
|
| std::string pref_key;
|
| EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &pref_key));
|
| base::DictionaryValue* details = NULL;
|
| @@ -669,7 +669,7 @@ bool SetPreferenceFunction::RunImpl() {
|
|
|
| ClearPreferenceFunction::~ClearPreferenceFunction() { }
|
|
|
| -bool ClearPreferenceFunction::RunImpl() {
|
| +bool ClearPreferenceFunction::RunSync() {
|
| std::string pref_key;
|
| EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &pref_key));
|
| base::DictionaryValue* details = NULL;
|
|
|