Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: chrome/common/json_pref_store.h

Issue 5646003: Sanitize PrefStore interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix PrefService mock construction in PrefServiceTest to include command line store. Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/json_pref_store.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_COMMON_JSON_PREF_STORE_H_ 5 #ifndef CHROME_COMMON_JSON_PREF_STORE_H_
6 #define CHROME_COMMON_JSON_PREF_STORE_H_ 6 #define CHROME_COMMON_JSON_PREF_STORE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h"
12 #include "base/file_path.h"
13 #include "base/observer_list.h"
11 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
12 #include "chrome/common/pref_store.h"
13 #include "chrome/common/important_file_writer.h" 15 #include "chrome/common/important_file_writer.h"
16 #include "chrome/common/persistent_pref_store.h"
14 17
15 namespace base { 18 namespace base {
16 class MessageLoopProxy; 19 class MessageLoopProxy;
17 } 20 }
18 21
19 class DictionaryValue; 22 class DictionaryValue;
20 class FilePath; 23 class FilePath;
24 class Value;
21 25
22 class JsonPrefStore : public PrefStore, 26 // A writable PrefStore implementation that is used for user preferences.
27 class JsonPrefStore : public PersistentPrefStore,
23 public ImportantFileWriter::DataSerializer { 28 public ImportantFileWriter::DataSerializer {
24 public: 29 public:
25 // |file_message_loop_proxy| is the MessageLoopProxy for a thread on which 30 // |file_message_loop_proxy| is the MessageLoopProxy for a thread on which
26 // file I/O can be done. 31 // file I/O can be done.
27 JsonPrefStore(const FilePath& pref_filename, 32 JsonPrefStore(const FilePath& pref_filename,
28 base::MessageLoopProxy* file_message_loop_proxy); 33 base::MessageLoopProxy* file_message_loop_proxy);
29 virtual ~JsonPrefStore(); 34 virtual ~JsonPrefStore();
30 35
31 // PrefStore methods: 36 // PrefStore overrides:
37 virtual ReadResult GetValue(const std::string& key, Value** result) const;
38 virtual void AddObserver(PrefStore::Observer* observer);
39 virtual void RemoveObserver(PrefStore::Observer* observer);
40
41 // PersistentPrefStore overrides:
42 virtual void SetValue(const std::string& key, Value* value);
43 virtual void SetValueSilently(const std::string& key, Value* value);
44 virtual void RemoveValue(const std::string& key);
32 virtual bool ReadOnly() const { return read_only_; } 45 virtual bool ReadOnly() const { return read_only_; }
33
34 virtual DictionaryValue* prefs() const { return prefs_.get(); }
35
36 virtual PrefReadError ReadPrefs(); 46 virtual PrefReadError ReadPrefs();
37
38 virtual bool WritePrefs(); 47 virtual bool WritePrefs();
39
40 virtual void ScheduleWritePrefs(); 48 virtual void ScheduleWritePrefs();
41 49
42 // ImportantFileWriter::DataSerializer methods: 50 private:
43 virtual bool SerializeData(std::string* data); 51 // ImportantFileWriter::DataSerializer overrides:
52 bool SerializeData(std::string* output);
44 53
45 private:
46 FilePath path_; 54 FilePath path_;
47 55
48 scoped_ptr<DictionaryValue> prefs_; 56 scoped_ptr<DictionaryValue> prefs_;
49 57
50 bool read_only_; 58 bool read_only_;
51 59
52 // Helper for safely writing pref data. 60 // Helper for safely writing pref data.
53 ImportantFileWriter writer_; 61 ImportantFileWriter writer_;
62
63 ObserverList<PrefStore::Observer, true> observers_;
64
65 DISALLOW_COPY_AND_ASSIGN(JsonPrefStore);
54 }; 66 };
55 67
56 #endif // CHROME_COMMON_JSON_PREF_STORE_H_ 68 #endif // CHROME_COMMON_JSON_PREF_STORE_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/json_pref_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698