OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 | 264 |
265 message UptimeLimitProto { | 265 message UptimeLimitProto { |
266 // Sets the length of device uptime after which an automatic reboot is | 266 // Sets the length of device uptime after which an automatic reboot is |
267 // scheduled. An automatic reboot is scheduled at the selected time but may be | 267 // scheduled. An automatic reboot is scheduled at the selected time but may be |
268 // delayed on the device by up to 24 hours, e.g. if a user is currently using | 268 // delayed on the device by up to 24 hours, e.g. if a user is currently using |
269 // the device or an app/extension has requested reboots to be inhibited | 269 // the device or an app/extension has requested reboots to be inhibited |
270 // temporarily. The policy value should be specified in seconds. | 270 // temporarily. The policy value should be specified in seconds. |
271 optional int64 uptime_limit = 1; | 271 optional int64 uptime_limit = 1; |
272 } | 272 } |
273 | 273 |
| 274 message AttestationSettingsProto { |
| 275 // Whether attestation features are enabled for the device. |
| 276 optional bool attestation_enabled = 1; |
| 277 } |
| 278 |
274 message ChromeDeviceSettingsProto { | 279 message ChromeDeviceSettingsProto { |
275 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 280 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
276 optional UserWhitelistProto user_whitelist = 2; | 281 optional UserWhitelistProto user_whitelist = 2; |
277 optional GuestModeEnabledProto guest_mode_enabled = 3; | 282 optional GuestModeEnabledProto guest_mode_enabled = 3; |
278 optional DeviceProxySettingsProto device_proxy_settings = 4; | 283 optional DeviceProxySettingsProto device_proxy_settings = 4; |
279 optional CameraEnabledProto camera_enabled = 5; | 284 optional CameraEnabledProto camera_enabled = 5; |
280 optional ShowUserNamesOnSigninProto show_user_names = 6; | 285 optional ShowUserNamesOnSigninProto show_user_names = 6; |
281 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 286 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
282 optional AllowNewUsersProto allow_new_users = 8; | 287 optional AllowNewUsersProto allow_new_users = 8; |
283 optional MetricsEnabledProto metrics_enabled = 9; | 288 optional MetricsEnabledProto metrics_enabled = 9; |
284 optional ReleaseChannelProto release_channel = 10; | 289 optional ReleaseChannelProto release_channel = 10; |
285 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 290 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
286 optional DeviceReportingProto device_reporting = 12; | 291 optional DeviceReportingProto device_reporting = 12; |
287 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 292 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
288 optional AppPackProto app_pack = 14; | 293 optional AppPackProto app_pack = 14; |
289 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 294 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
290 optional ScreenSaverProto login_screen_saver = 16; | 295 optional ScreenSaverProto login_screen_saver = 16; |
291 optional AutoUpdateSettingsProto auto_update_settings = 17; | 296 optional AutoUpdateSettingsProto auto_update_settings = 17; |
292 optional StartUpUrlsProto start_up_urls = 18; | 297 optional StartUpUrlsProto start_up_urls = 18; |
293 optional PinnedAppsProto pinned_apps = 19; | 298 optional PinnedAppsProto pinned_apps = 19; |
294 optional SystemTimezoneProto system_timezone = 20; | 299 optional SystemTimezoneProto system_timezone = 20; |
295 optional DeviceLocalAccountsProto device_local_accounts = 21; | 300 optional DeviceLocalAccountsProto device_local_accounts = 21; |
296 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 301 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
297 optional StartUpFlagsProto start_up_flags = 23; | 302 optional StartUpFlagsProto start_up_flags = 23; |
298 optional UptimeLimitProto uptime_limit = 24; | 303 optional UptimeLimitProto uptime_limit = 24; |
| 304 optional AttestationSettingsProto attestation_settings = 25; |
299 } | 305 } |
OLD | NEW |