diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-06 02:45:47 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-06 02:45:47 +0000 |
commit | b1de2c717ac103f2c66110510072ce4731e51015 (patch) | |
tree | 6ece76e06f3118052d1913774d49fa71b8802fb6 /chrome/browser/geolocation/geolocation_prefs.h | |
parent | e659eb915610370c828a64ae2d82519cc10c60e7 (diff) | |
download | chromium_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/geolocation/geolocation_prefs.h')
-rw-r--r-- | chrome/browser/geolocation/geolocation_prefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/geolocation/geolocation_prefs.h b/chrome/browser/geolocation/geolocation_prefs.h index c4fc954..d5be8e5 100644 --- a/chrome/browser/geolocation/geolocation_prefs.h +++ b/chrome/browser/geolocation/geolocation_prefs.h @@ -5,11 +5,11 @@ #ifndef CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PREFS_H_ #define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PREFS_H_ -class PrefServiceSimple; +class PrefRegistrySimple; class PrefServiceSyncable; namespace geolocation { -void RegisterPrefs(PrefServiceSimple* prefs); +void RegisterPrefs(PrefRegistrySimple* registry); } #endif // CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PREFS_H_ |