HomeSort by relevance Sort by last modified time
    Searched defs:pref_key (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/preference/
chrome_direct_setting.cc 35 std::string pref_key; local
36 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &pref_key));
38 ->IsPreferenceOnWhitelist(pref_key));
41 GetPrefService()->FindPreference(pref_key.c_str());
59 std::string pref_key; local
60 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &pref_key));
62 ->IsPreferenceOnWhitelist(pref_key));
73 pref_service->FindPreference(pref_key.c_str());
78 pref_service->Set(pref_key.c_str(), *value);
90 std::string pref_key; local
    [all...]
chrome_direct_setting_api.cc 32 bool IsPreferenceOnWhitelist(const std::string& pref_key){
33 return whitelist_.find(pref_key) != whitelist_.end();
56 const char* pref_key = (*iter).c_str(); local
59 pref_key);
60 registrar->Add(pref_key, callback);
106 const std::string& pref_key) {
107 return preference_whitelist.Get().IsPreferenceOnWhitelist(pref_key);
121 PrefService* pref_service, const std::string& pref_key) {
123 pref_key.c_str());
127 profile_->GetPrefs()->FindPreference(pref_key.c_str())
    [all...]
preference_api.cc 335 const std::string& pref_key,
340 extension_prefs()->pref_service()->FindPreference(pref_key.c_str());
341 DCHECK(pref) << "Extension controlled preference key " << pref_key
344 << "Extension controlled preference " << pref_key << " has wrong type.";
358 preference->SetWithoutPathExpansion(pref_key, value->DeepCopy());
361 extension_id, pref_key, scope, value);
366 const std::string& pref_key,
368 DCHECK(extension_prefs()->pref_service()->FindPreference(pref_key.c_str()))
369 << "Extension controlled preference key " << pref_key
379 preference->RemoveWithoutPathExpansion(pref_key, NULL)
527 std::string pref_key; local
589 std::string pref_key; local
675 std::string pref_key; local
    [all...]

Completed in 160 milliseconds