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

Unified Diff: chrome/service/service_process_prefs.h

Issue 10968031: Added ConnectorSettings class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: chrome/service/service_process_prefs.h
diff --git a/chrome/service/service_process_prefs.h b/chrome/service/service_process_prefs.h
index 1b33eb4d8356e0fb0c7ad8ef1a785baddd1adf88..74a674d9a5cb51d54d785755f93711d87d92bcf1 100644
--- a/chrome/service/service_process_prefs.h
+++ b/chrome/service/service_process_prefs.h
@@ -30,20 +30,20 @@ class ServiceProcessPrefs {
void WritePrefs();
// Get a string preference for |key| and store it in |result|.
- void GetString(const std::string& key, std::string* result);
+ void GetString(const std::string& key, std::string* result) const;
// Set a string |value| for |key|.
void SetString(const std::string& key, const std::string& value);
// Get a boolean preference for |key| and store it in |result|.
- void GetBoolean(const std::string& key, bool* result);
+ void GetBoolean(const std::string& key, bool* result) const;
// Set a boolean |value| for |key|.
void SetBoolean(const std::string& key, bool value);
// Get a dictionary preference for |key| and store it in |result|.
void GetDictionary(const std::string& key,
- const base::DictionaryValue** result);
+ const base::DictionaryValue** result) const;
// Removes the pref specified by |key|.
void RemovePref(const std::string& key);

Powered by Google App Engine
This is Rietveld 408576698