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

Unified Diff: chrome/service/service_process_prefs.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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
« no previous file with comments | « chrome/service/cloud_print/printer_job_handler.h ('k') | chrome/test/automation/automation_json_requests.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_process_prefs.h
===================================================================
--- chrome/service/service_process_prefs.h (revision 92173)
+++ chrome/service/service_process_prefs.h (working copy)
@@ -10,6 +10,10 @@
#include "chrome/common/json_pref_store.h"
+namespace base {
+class DictionaryValue;
+}
+
// Manages persistent preferences for the service process. This is basically a
// thin wrapper around JsonPrefStore for more comfortable use.
class ServiceProcessPrefs {
@@ -39,7 +43,8 @@
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 DictionaryValue** result);
+ void GetDictionary(const std::string& key,
+ const base::DictionaryValue** result);
// Removes the pref specified by |key|.
void RemovePref(const std::string& key);
« no previous file with comments | « chrome/service/cloud_print/printer_job_handler.h ('k') | chrome/test/automation/automation_json_requests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698