Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: chrome/browser/chromeos/preferences.cc

Issue 938043002: ChromeOS: Switch timezone auto update ON by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/preferences.cc
diff --git a/chrome/browser/chromeos/preferences.cc b/chrome/browser/chromeos/preferences.cc
index 6334a022e8abe4746af8ffe91f88e79c96abb7e7..32babb7c76c3db46c79d8f88697956addb6431b5 100644
--- a/chrome/browser/chromeos/preferences.cc
+++ b/chrome/browser/chromeos/preferences.cc
@@ -89,7 +89,7 @@ void Preferences::RegisterPrefs(PrefRegistrySimple* registry) {
false);
registry->RegisterStringPref(prefs::kLogoutStartedLast, std::string());
registry->RegisterBooleanPref(prefs::kResolveDeviceTimezoneByGeolocation,
- false);
+ true);
}
// static
@@ -319,7 +319,7 @@ void Preferences::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
registry->RegisterBooleanPref(
- prefs::kResolveTimezoneByGeolocation, false,
+ prefs::kResolveTimezoneByGeolocation, true,
user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
Nikita (slow) 2015/02/19 16:34:01 This should be syncable.
Alexander Alekseev 2015/02/19 16:38:46 I've sent this question to PM.
input_method::InputMethodSyncer::RegisterProfilePrefs(registry);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698