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

Unified Diff: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto

Issue 1843523002: ChromeOS: Add SystemTimezoneAutomaticDetection policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@596690--Implement-better-timezone-detection--refactoring-before-policy
Patch Set: Created 4 years, 9 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/policy/proto/chrome_device_policy.proto
diff --git a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
index 9de8517907fbbe85c59903ce177cc13d48c9a933..d59a1eec1366bc34f5cceb993884841bd8bb5637 100644
--- a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
+++ b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
@@ -687,6 +687,19 @@ message AllowBluetoothProto {
optional bool allow_bluetooth = 1 [default = true];
}
+message SystemTimezoneAutomaticDetectionProto {
+ // This allows domain administrators to control the timezone settings for
+ // their devices.
+ enum AutomaticTimezoneDetectionType {
+ AUTOMATIC_TIMEZONE_DETECTION_USERS_DECIDE = 0;
+ AUTOMATIC_TIMEZONE_DETECTION_DISABLED = 1;
+ AUTOMATIC_TIMEZONE_DETECTION_IP_ONLY = 2;
+ AUTOMATIC_TIMEZONE_DETECTION_SEND_WIFI_ACCESS_POINTS = 3;
+ };
+
+ optional AutomaticTimezoneDetectionType timezone_detection_type = 1;
+}
+
message ChromeDeviceSettingsProto {
optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
optional UserWhitelistProto user_whitelist = 2;
@@ -736,4 +749,6 @@ message ChromeDeviceSettingsProto {
optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41;
optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42;
optional AllowBluetoothProto allow_bluetooth = 43;
+ optional SystemTimezoneAutomaticDetectionProto
+ system_timezone_automatic_detection = 44;
}

Powered by Google App Engine
This is Rietveld 408576698