OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_SERVICE_SERVICE_PROCESS_PREFS_H_ | 5 #ifndef CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ |
6 #define CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ | 6 #define CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "chrome/common/json_pref_store.h" | 11 #include "chrome/common/json_pref_store.h" |
12 | 12 |
| 13 namespace base { |
| 14 class DictionaryValue; |
| 15 } |
| 16 |
13 // Manages persistent preferences for the service process. This is basically a | 17 // Manages persistent preferences for the service process. This is basically a |
14 // thin wrapper around JsonPrefStore for more comfortable use. | 18 // thin wrapper around JsonPrefStore for more comfortable use. |
15 class ServiceProcessPrefs { | 19 class ServiceProcessPrefs { |
16 public: | 20 public: |
17 // |file_message_loop_proxy| is the MessageLoopProxy for a thread on which | 21 // |file_message_loop_proxy| is the MessageLoopProxy for a thread on which |
18 // file I/O can be done. | 22 // file I/O can be done. |
19 ServiceProcessPrefs(const FilePath& pref_filename, | 23 ServiceProcessPrefs(const FilePath& pref_filename, |
20 base::MessageLoopProxy* file_message_loop_proxy); | 24 base::MessageLoopProxy* file_message_loop_proxy); |
21 ~ServiceProcessPrefs(); | 25 ~ServiceProcessPrefs(); |
22 | 26 |
23 // Read preferences from the backing file. | 27 // Read preferences from the backing file. |
24 void ReadPrefs(); | 28 void ReadPrefs(); |
25 | 29 |
26 // Write the data to the backing file. | 30 // Write the data to the backing file. |
27 void WritePrefs(); | 31 void WritePrefs(); |
28 | 32 |
29 // Get a string preference for |key| and store it in |result|. | 33 // Get a string preference for |key| and store it in |result|. |
30 void GetString(const std::string& key, std::string* result); | 34 void GetString(const std::string& key, std::string* result); |
31 | 35 |
32 // Set a string |value| for |key|. | 36 // Set a string |value| for |key|. |
33 void SetString(const std::string& key, const std::string& value); | 37 void SetString(const std::string& key, const std::string& value); |
34 | 38 |
35 // Get a boolean preference for |key| and store it in |result|. | 39 // Get a boolean preference for |key| and store it in |result|. |
36 void GetBoolean(const std::string& key, bool* result); | 40 void GetBoolean(const std::string& key, bool* result); |
37 | 41 |
38 // Set a boolean |value| for |key|. | 42 // Set a boolean |value| for |key|. |
39 void SetBoolean(const std::string& key, bool value); | 43 void SetBoolean(const std::string& key, bool value); |
40 | 44 |
41 // Get a dictionary preference for |key| and store it in |result|. | 45 // Get a dictionary preference for |key| and store it in |result|. |
42 void GetDictionary(const std::string& key, const DictionaryValue** result); | 46 void GetDictionary(const std::string& key, |
| 47 const base::DictionaryValue** result); |
43 | 48 |
44 // Removes the pref specified by |key|. | 49 // Removes the pref specified by |key|. |
45 void RemovePref(const std::string& key); | 50 void RemovePref(const std::string& key); |
46 | 51 |
47 private: | 52 private: |
48 scoped_refptr<JsonPrefStore> prefs_; | 53 scoped_refptr<JsonPrefStore> prefs_; |
49 | 54 |
50 DISALLOW_COPY_AND_ASSIGN(ServiceProcessPrefs); | 55 DISALLOW_COPY_AND_ASSIGN(ServiceProcessPrefs); |
51 }; | 56 }; |
52 | 57 |
53 #endif // CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ | 58 #endif // CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ |
OLD | NEW |