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

Unified Diff: chrome/browser/chromeos/system/timezone_util.h

Issue 2849823003: ChromeOS: implement per-user time zone preferences. (Closed)
Patch Set: Rebased. Created 3 years, 4 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/browser/chromeos/system/timezone_util.h
diff --git a/chrome/browser/chromeos/system/timezone_util.h b/chrome/browser/chromeos/system/timezone_util.h
index 92d8ade532b481f18f53969043bccfbd21d97e9c..ee6e612367024a7d53142723a3d7863c7cfb8d0e 100644
--- a/chrome/browser/chromeos/system/timezone_util.h
+++ b/chrome/browser/chromeos/system/timezone_util.h
@@ -9,6 +9,8 @@
#include "base/strings/string16.h"
+class Profile;
+
namespace base {
class ListValue;
}
@@ -31,6 +33,29 @@ bool HasSystemTimezonePolicy();
// Apply TimeZone update from TimeZoneProvider.
void ApplyTimeZone(const TimeZoneResponseData* timezone);
+// Returns true if given timezone preference is enterprise-managed.
+// Works for:
+// - prefs::kUserTimezone
+// - prefs::kResolveTimezoneByGeolocation
+bool IsTimezonePrefsManaged(const std::string& pref_name);
+
+// Updates system timezone from user profile data if needed.
+// This is called from chromeos::Preferences after updating profile
+// preferences to apply new value to system time zone.
+void UpdateSystemTimezone(Profile* profile);
+
+// Updates Local State preference prefs::kSigninScreenTimezone AND
+// also immediately sets system timezone (chromeos::system::TimezoneSettings).
+// This is called when there is no user session (i.e. OOBE and signin screen),
+// or when device policies are updated.
+void SetSystemAndSigninScreenTimezone(const std::string& timezone);
+
+// Returns true if per-user timezone preferences are enabled.
+bool PerUserTimezoneEnabled();
+
+// This is called from UI code to apply user-selected time zone.
+void SetTimezoneFromUI(Profile* profile, const std::string& timezone_id);
+
} // namespace system
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/settings/system_settings_provider.cc ('k') | chrome/browser/chromeos/system/timezone_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698