summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process.h
diff options
context:
space:
mode:
authorjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-06 02:45:47 +0000
committerjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-06 02:45:47 +0000
commitb1de2c717ac103f2c66110510072ce4731e51015 (patch)
tree6ece76e06f3118052d1913774d49fa71b8802fb6 /chrome/browser/browser_process.h
parente659eb915610370c828a64ae2d82519cc10c60e7 (diff)
downloadchromium_src-b1de2c717ac103f2c66110510072ce4731e51015.zip
chromium_src-b1de2c717ac103f2c66110510072ce4731e51015.tar.gz
chromium_src-b1de2c717ac103f2c66110510072ce4731e51015.tar.bz2
Remove PrefServiceSimple, replacing it with PrefService and PrefRegistrySimple.
This is a step towards removing registration methods from PrefService and simplifying its class hierarchy. TBR=ben@chromium.org BUG=155525 Review URL: https://chromiumcodereview.appspot.com/11741003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180873 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r--chrome/browser/browser_process.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index 942c0b0..40f70b5 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -29,7 +29,8 @@ class IntranetRedirectDetector;
class IOThread;
class MetricsService;
class NotificationUIManager;
-class PrefServiceSimple;
+class PrefRegistrySimple;
+class PrefService;
class Profile;
class ProfileManager;
class RenderWidgetSnapshotTaker;
@@ -103,7 +104,7 @@ class BrowserProcess {
// Services: any of these getters may return NULL
virtual MetricsService* metrics_service() = 0;
virtual ProfileManager* profile_manager() = 0;
- virtual PrefServiceSimple* local_state() = 0;
+ virtual PrefService* local_state() = 0;
virtual net::URLRequestContextGetter* system_request_context() = 0;
virtual chrome_variations::VariationsService* variations_service() = 0;