/external/chromium/chrome/browser/extensions/ |
extension_prefs.h | 304 const std::string& pref_key, 309 const std::string& pref_key, 315 const std::string& pref_key, 321 const std::string& pref_key, 325 // for |pref_key| *and* it is specific to incognito mode. 326 bool HasIncognitoPrefValue(const std::string& pref_key); 355 // Reads a boolean pref from |ext| with key |pref_key|. 356 // Return false if the value is false or |pref_key| does not exist. 358 const std::string& pref_key); 360 // Reads a boolean pref |pref_key| from extension with id |extension_id| [all...] |
extension_preference_api.cc | 217 const std::string* pref_key = local 219 OnPrefChanged(Source<PrefService>(source).ptr(), *pref_key); 289 std::string pref_key; local 290 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &pref_key)); 309 pref_key, &browser_pref, &permission)); 311 error_ = base::StringPrintf(kPermissionErrorMessage, pref_key.c_str()); 339 std::string pref_key; local 340 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &pref_key)); 360 pref_key, &browser_pref, &permission)); 362 error_ = base::StringPrintf(kPermissionErrorMessage, pref_key.c_str()) 388 std::string pref_key; local [all...] |
extension_preference_api.h | 26 void OnPrefChanged(PrefService* pref_service, const std::string& pref_key);
|
extension_pref_value_map.h | 88 const std::string& pref_key, 98 const std::string& pref_key,
|
extension_prefs.cc | 358 const DictionaryValue* ext, const std::string& pref_key) { 360 if (!ext->GetBoolean(pref_key, &bool_value)) 367 const std::string& extension_id, const std::string& pref_key) { 373 return ReadBooleanFromPref(ext, pref_key); 377 const DictionaryValue* ext, const std::string& pref_key, int* out_value) { 378 if (!ext->GetInteger(pref_key, out_value)) 385 const std::string& extension_id, const std::string& pref_key, 392 return ReadIntegerFromPref(ext, pref_key, out_value); 396 const std::string& extension_id, const std::string& pref_key, 400 if (!ext || !ext->GetList(pref_key, &out) [all...] |
extension_pref_value_map.cc | 51 const std::string& pref_key, 60 GetEffectivePrefValueController(pref_key, incognito, NULL); 69 const std::string& pref_key, 72 GetEffectivePrefValueController(pref_key, incognito, NULL);
|
/external/chromium/chrome/browser/importer/ |
firefox_importer_utils.h | 101 const std::string& pref_key);
|
firefox_importer_utils.cc | 259 const std::string& pref_key) { 265 size_t prop_index = content.find(pref_key + "="); 269 size_t start = prop_index + pref_key.length(); 276 LOG(WARNING) << "Firefox property " << pref_key << " could not be parsed."; 284 const std::string& pref_key) { 289 return GetPrefsJsValue(content, pref_key); 435 const std::string& pref_key) { 437 std::string search_for = std::string("user_pref(\"") + pref_key + 453 LOG(WARNING) << "Firefox property " << pref_key << " could not be parsed.";
|
/external/chromium/chrome/browser/instant/ |
promo_counter.h | 21 // Creates a new PromoCounter. |pref_key| is used to store prefs related to 27 const std::string& pref_key,
|
promo_counter.cc | 23 const std::string& pref_key, 28 pref_key_(pref_key),
|