Home
last modified time | relevance | path

Searched refs:JsonPrefStore (Results 1 – 6 of 6) sorted by relevance

/external/chromium/chrome/common/
Djson_pref_store.cc26 explicit FileThreadDeserializer(JsonPrefStore* delegate) in FileThreadDeserializer()
77 scoped_refptr<JsonPrefStore> delegate_;
128 JsonPrefStore::JsonPrefStore(const FilePath& filename, in JsonPrefStore() function in JsonPrefStore
136 JsonPrefStore::~JsonPrefStore() { in ~JsonPrefStore()
140 PrefStore::ReadResult JsonPrefStore::GetValue(const std::string& key, in GetValue()
150 void JsonPrefStore::AddObserver(PrefStore::Observer* observer) { in AddObserver()
154 void JsonPrefStore::RemoveObserver(PrefStore::Observer* observer) { in RemoveObserver()
158 PrefStore::ReadResult JsonPrefStore::GetMutableValue(const std::string& key, in GetMutableValue()
163 void JsonPrefStore::SetValue(const std::string& key, Value* value) { in SetValue()
174 void JsonPrefStore::SetValueSilently(const std::string& key, Value* value) { in SetValueSilently()
[all …]
Djson_pref_store.h27 class JsonPrefStore : public PersistentPrefStore,
40 JsonPrefStore(const FilePath& pref_filename,
42 virtual ~JsonPrefStore();
85 DISALLOW_COPY_AND_ASSIGN(JsonPrefStore);
Djson_pref_store_unittest.cc47 scoped_refptr<JsonPrefStore> pref_store = in TEST_F()
48 new JsonPrefStore(bogus_input_file, message_loop_proxy_.get()); in TEST_F()
59 scoped_refptr<JsonPrefStore> pref_store = in TEST_F()
60 new JsonPrefStore(invalid_file, message_loop_proxy_.get()); in TEST_F()
80 scoped_refptr<JsonPrefStore> pref_store = in TEST_F()
81 new JsonPrefStore(input_file, message_loop_proxy_.get()); in TEST_F()
/external/chromium/chrome/browser/prefs/
Dpref_service_mock_builder.cc101 new JsonPrefStore(prefs_file, in WithUserFilePrefs()
Dpref_service.cc120 JsonPrefStore* user = new JsonPrefStore( in CreatePrefServiceAsync()
237 (static_cast<JsonPrefStore*>(user_pref_store_.get()))->ReadPrefs(this); in InitFromStorage()
Dpref_service.h37 public JsonPrefStore::Delegate {