summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_shutdown.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_shutdown.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_shutdown.h')
-rw-r--r--chrome/browser/browser_shutdown.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_shutdown.h b/chrome/browser/browser_shutdown.h
index cc4f728..208bb1d 100644
--- a/chrome/browser/browser_shutdown.h
+++ b/chrome/browser/browser_shutdown.h
@@ -5,7 +5,7 @@
#ifndef CHROME_BROWSER_BROWSER_SHUTDOWN_H__
#define CHROME_BROWSER_BROWSER_SHUTDOWN_H__
-class PrefServiceSimple;
+class PrefRegistrySimple;
namespace browser_shutdown {
@@ -20,7 +20,7 @@ enum ShutdownType {
END_SESSION
};
-void RegisterPrefs(PrefServiceSimple* local_state);
+void RegisterPrefs(PrefRegistrySimple* registry);
// Called when the browser starts shutting down so that we can measure shutdown
// time.