Chromium Code Reviews| Index: chrome/browser/profiles/profile.cc |
| diff --git a/chrome/browser/profiles/profile.cc b/chrome/browser/profiles/profile.cc |
| index 49437d54705d3385c2f848b9a04f681b1b285f7d..d3c772185eb3ed5bfd38e6212be11d6bc4f71eee 100644 |
| --- a/chrome/browser/profiles/profile.cc |
| +++ b/chrome/browser/profiles/profile.cc |
| @@ -127,6 +127,8 @@ void Profile::RegisterUserPrefs(PrefService* prefs) { |
| prefs->RegisterFilePathPref(prefs::kCurrentThemePackFilename, |
| FilePath(), |
| PrefService::UNSYNCABLE_PREF); |
| +#if !defined(OS_ANDROID) |
| + // Themes are not supported in android. |
|
Elliot Glaysher
2012/03/02 00:23:05
This block is going away and is being moved to the
Ted C
2012/03/08 19:42:08
Hazaa...yay for making my patch smaller. This fil
|
| prefs->RegisterStringPref(prefs::kCurrentThemeID, |
| ThemeService::kDefaultThemeID, |
| PrefService::UNSYNCABLE_PREF); |
| @@ -138,6 +140,7 @@ void Profile::RegisterUserPrefs(PrefService* prefs) { |
| PrefService::UNSYNCABLE_PREF); |
| prefs->RegisterDictionaryPref(prefs::kCurrentThemeDisplayProperties, |
| PrefService::UNSYNCABLE_PREF); |
| +#endif |
| prefs->RegisterBooleanPref(prefs::kDisableExtensions, |
| false, |
| PrefService::UNSYNCABLE_PREF); |