| Index: chrome/browser/prefs/browser_prefs.h
|
| diff --git a/chrome/browser/prefs/browser_prefs.h b/chrome/browser/prefs/browser_prefs.h
|
| index 5fb526224b73d9cf4ea21dcd1f4834f743c9ca90..022f4a6a5fa55a5e998195bc02631b4569fdd8df 100644
|
| --- a/chrome/browser/prefs/browser_prefs.h
|
| +++ b/chrome/browser/prefs/browser_prefs.h
|
| @@ -6,15 +6,15 @@
|
| #define CHROME_BROWSER_PREFS_BROWSER_PREFS_H_
|
|
|
| class PrefRegistrySimple;
|
| +class PrefRegistrySyncable;
|
| class PrefService;
|
| -class PrefServiceSyncable;
|
| class Profile;
|
|
|
| namespace chrome {
|
|
|
| // Makes the PrefService objects aware of all the prefs.
|
| -void RegisterLocalState(PrefRegistrySimple* registry, PrefService* local_state);
|
| -void RegisterUserPrefs(PrefServiceSyncable* user_prefs);
|
| +void RegisterLocalState(PrefService* local_state, PrefRegistrySimple* registry);
|
| +void RegisterUserPrefs(PrefService* user_prefs, PrefRegistrySyncable* registry);
|
|
|
| // Migrates prefs from |local_state| to |profile|'s pref store.
|
| void MigrateBrowserPrefs(Profile* profile, PrefService* local_state);
|
|
|