diff options
Diffstat (limited to 'chrome/service/service_process_prefs.h')
-rw-r--r-- | chrome/service/service_process_prefs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/service/service_process_prefs.h b/chrome/service/service_process_prefs.h index a16f620..6816f50 100644 --- a/chrome/service/service_process_prefs.h +++ b/chrome/service/service_process_prefs.h @@ -41,6 +41,9 @@ class ServiceProcessPrefs { // Get a dictionary preference for |key| and store it in |result|. void GetDictionary(const std::string& key, const DictionaryValue** result); + // Removes the pref specified by |key|. + void RemovePref(const std::string& key); + private: scoped_refptr<JsonPrefStore> prefs_; |