HomeSort by relevance Sort by last modified time
    Searched refs:RemoveValue (Results 1 - 17 of 17) sorted by null

  /external/chromium/chrome/browser/prefs/
pref_value_map_unittest.cc 26 TEST_F(PrefValueMapTest, RemoveValue) {
28 EXPECT_FALSE(map.RemoveValue("key"));
33 EXPECT_TRUE(map.RemoveValue("key"));
36 EXPECT_FALSE(map.RemoveValue("key"));
value_map_pref_store.cc 34 void ValueMapPrefStore::RemoveValue(const std::string& key) {
35 if (prefs_.RemoveValue(key))
value_map_pref_store.h 42 void RemoveValue(const std::string& key);
overlay_persistent_pref_store.cc 72 void OverlayPersistentPrefStore::RemoveValue(const std::string& key) {
73 if (overlay_.RemoveValue(key))
overlay_persistent_pref_store.h 43 virtual void RemoveValue(const std::string& key);
pref_value_map.h 38 bool RemoveValue(const std::string& key);
testing_pref_store.h 37 virtual void RemoveValue(const std::string& key);
testing_pref_store.cc 47 void TestingPrefStore::RemoveValue(const std::string& key) {
48 if (prefs_.RemoveValue(key))
overlay_persistent_pref_store_unittest.cc 54 overlay_->RemoveValue(key);
59 underlay_->RemoveValue(key);
107 overlay_->RemoveValue(key);
pref_value_map.cc 56 bool PrefValueMap::RemoveValue(const std::string& key) {
pref_service.cc 516 user_pref_store_->RemoveValue(path);
  /external/chromium/chrome/browser/extensions/
extension_pref_store.cc 36 RemoveValue(key);
extension_pref_value_map.cc 45 if (prefs->RemoveValue(key))
  /external/chromium/chrome/common/
persistent_pref_store.h 58 virtual void RemoveValue(const std::string& key) = 0;
json_pref_store.h 54 virtual void RemoveValue(const std::string& key);
json_pref_store.cc 183 void JsonPrefStore::RemoveValue(const std::string& key) {
  /external/chromium/chrome/browser/policy/
configuration_policy_pref_store.cc 346 if (prefs_.RemoveValue(map[i].preference_path))
    [all...]

Completed in 236 milliseconds