| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
| 8 | 8 |
| 9 package enterprise_management; | 9 package enterprise_management; |
| 10 | 10 |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 // affects the login-screen and all other users. | 252 // affects the login-screen and all other users. |
| 253 optional string timezone = 1; | 253 optional string timezone = 1; |
| 254 | 254 |
| 255 // This allows domain administrators to control the timezone settings for | 255 // This allows domain administrators to control the timezone settings for |
| 256 // their devices. | 256 // their devices. |
| 257 enum AutomaticTimezoneDetectionType { | 257 enum AutomaticTimezoneDetectionType { |
| 258 USERS_DECIDE = 0; | 258 USERS_DECIDE = 0; |
| 259 DISABLED = 1; | 259 DISABLED = 1; |
| 260 IP_ONLY = 2; | 260 IP_ONLY = 2; |
| 261 SEND_WIFI_ACCESS_POINTS = 3; | 261 SEND_WIFI_ACCESS_POINTS = 3; |
| 262 SEND_ALL_LOCATION_INFO = 4; |
| 262 }; | 263 }; |
| 263 | 264 |
| 264 optional AutomaticTimezoneDetectionType timezone_detection_type = 2; | 265 optional AutomaticTimezoneDetectionType timezone_detection_type = 2; |
| 265 } | 266 } |
| 266 | 267 |
| 267 message SystemUse24HourClockProto { | 268 message SystemUse24HourClockProto { |
| 268 // Specifies an owner-determined clock format that applies to the login | 269 // Specifies an owner-determined clock format that applies to the login |
| 269 // screen and is used as a default for all user sessions. Users can still | 270 // screen and is used as a default for all user sessions. Users can still |
| 270 // override the format to use for their account. | 271 // override the format to use for their account. |
| 271 // | 272 // |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 810 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| 810 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 811 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| 811 optional AllowBluetoothProto allow_bluetooth = 43; | 812 optional AllowBluetoothProto allow_bluetooth = 43; |
| 812 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 813 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
| 813 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 814 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 814 45; | 815 45; |
| 815 optional LoginAppsProto login_apps = 46; | 816 optional LoginAppsProto login_apps = 46; |
| 816 optional NetworkThrottlingEnabledProto network_throttling = 47; | 817 optional NetworkThrottlingEnabledProto network_throttling = 47; |
| 817 optional DeviceWallpaperImageProto device_wallpaper_image = 48; | 818 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
| 818 } | 819 } |
| OLD | NEW |