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

Unified Diff: chrome/common/pref_names.cc

Issue 2849823003: ChromeOS: implement per-user time zone preferences. (Closed)
Patch Set: Update after review. Created 3 years, 5 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
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index cc393e19151ce9b47d05119361cd30b2041fdf85..8eb34bb8649c90d512304f429c0b015d920d8a50 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -547,6 +547,9 @@ const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2";
// A boolean pref set to true if time should be displayed in 24-hour clock.
const char kUse24HourClock[] = "settings.clock.use_24hour_clock";
+// A string pref containing Timezone ID for this user.
+const char kUserTimezone[] = "settings.timezone";
+
// This setting disables manual timezone selection and starts periodic timezone
// refresh.
const char kResolveTimezoneByGeolocation[] =
@@ -2022,6 +2025,10 @@ const char kFactoryResetRequested[] = "FactoryResetRequested";
const char kDebuggingFeaturesRequested[] = "DebuggingFeaturesRequested";
#if defined(OS_CHROMEOS)
+// This setting controlls initial device timezone that is used before user
michaelpg 2017/07/24 06:57:40 controls
Alexander Alekseev 2017/07/29 06:10:16 Done.
+// session started. It is controlled by device owner.
+const char kSigninScreenTimezone[] = "settings.signin_screen_timezone";
+
// This setting starts periodic timezone refresh when not in user session.
// (user session is controlled by user profile preference
// kResolveTimezoneByGeolocation

Powered by Google App Engine
This is Rietveld 408576698