| 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 { | 13 namespace base { |
| 14 class DictionaryValue; | 14 class DictionaryValue; |
| 15 } | 15 } // namespace base |
| 16 | 16 |
| 17 // Manages persistent preferences for the service process. This is basically a | 17 // Manages persistent preferences for the service process. This is basically a |
| 18 // thin wrapper around JsonPrefStore for more comfortable use. | 18 // thin wrapper around JsonPrefStore for more comfortable use. |
| 19 class ServiceProcessPrefs { | 19 class ServiceProcessPrefs { |
| 20 public: | 20 public: |
| 21 // |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 |
| 22 // file I/O can be done. | 22 // file I/O can be done. |
| 23 ServiceProcessPrefs(const FilePath& pref_filename, | 23 ServiceProcessPrefs(const FilePath& pref_filename, |
| 24 base::MessageLoopProxy* file_message_loop_proxy); | 24 base::SequencedTaskRunner* blocking_task_runner); |
| 25 ~ServiceProcessPrefs(); | 25 ~ServiceProcessPrefs(); |
| 26 | 26 |
| 27 // Read preferences from the backing file. | 27 // Read preferences from the backing file. |
| 28 void ReadPrefs(); | 28 void ReadPrefs(); |
| 29 | 29 |
| 30 // Write the data to the backing file. | 30 // Write the data to the backing file. |
| 31 void WritePrefs(); | 31 void WritePrefs(); |
| 32 | 32 |
| 33 // Get a string preference for |key| and store it in |result|. | 33 // Get a string preference for |key| and store it in |result|. |
| 34 void GetString(const std::string& key, std::string* result); | 34 void GetString(const std::string& key, std::string* result); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 49 // Removes the pref specified by |key|. | 49 // Removes the pref specified by |key|. |
| 50 void RemovePref(const std::string& key); | 50 void RemovePref(const std::string& key); |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 scoped_refptr<JsonPrefStore> prefs_; | 53 scoped_refptr<JsonPrefStore> prefs_; |
| 54 | 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(ServiceProcessPrefs); | 55 DISALLOW_COPY_AND_ASSIGN(ServiceProcessPrefs); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 #endif // CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ | 58 #endif // CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ |
| OLD | NEW |