Index: chrome/browser/chromeos/display/display_preferences.cc |
diff --git a/chrome/browser/chromeos/display/display_preferences.cc b/chrome/browser/chromeos/display/display_preferences.cc |
index 1807333eb832147a6e6dd5bd3c4ed8fcb2a74da6..90d720471951c75889a062fae84ff0968cae36eb 100644 |
--- a/chrome/browser/chromeos/display/display_preferences.cc |
+++ b/chrome/browser/chromeos/display/display_preferences.cc |
@@ -132,28 +132,22 @@ void NotifyDisplayOverscans() { |
} // namespace |
-void RegisterDisplayLocalStatePrefs(PrefService* local_state) { |
+void RegisterDisplayLocalStatePrefs(PrefServiceSimple* local_state) { |
// The default secondary display layout. |
local_state->RegisterIntegerPref(prefs::kSecondaryDisplayLayout, |
- static_cast<int>(ash::DisplayLayout::RIGHT), |
- PrefService::UNSYNCABLE_PREF); |
+ static_cast<int>(ash::DisplayLayout::RIGHT)); |
// The default offset of the secondary display position from the primary |
// display. |
- local_state->RegisterIntegerPref(prefs::kSecondaryDisplayOffset, |
- 0, |
- PrefService::UNSYNCABLE_PREF); |
+ local_state->RegisterIntegerPref(prefs::kSecondaryDisplayOffset, 0); |
// Per-display preference. |
- local_state->RegisterDictionaryPref(prefs::kSecondaryDisplays, |
- PrefService::UNSYNCABLE_PREF); |
+ local_state->RegisterDictionaryPref(prefs::kSecondaryDisplays); |
// Primary output name. |
local_state->RegisterInt64Pref(prefs::kPrimaryDisplayID, |
- gfx::Display::kInvalidDisplayID, |
- PrefService::UNSYNCABLE_PREF); |
+ gfx::Display::kInvalidDisplayID); |
// Display overscan preference. |
- local_state->RegisterDictionaryPref(prefs::kDisplayOverscans, |
- PrefService::UNSYNCABLE_PREF); |
+ local_state->RegisterDictionaryPref(prefs::kDisplayOverscans); |
} |
void SetDisplayLayoutPref(const gfx::Display& display, |