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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 // temporarily. The policy value should be specified in seconds. | 272 // temporarily. The policy value should be specified in seconds. |
273 optional int64 uptime_limit = 1; | 273 optional int64 uptime_limit = 1; |
274 } | 274 } |
275 | 275 |
276 message VariationsParameterProto { | 276 message VariationsParameterProto { |
277 // The string for the restrict parameter to be appended to the Variations URL | 277 // The string for the restrict parameter to be appended to the Variations URL |
278 // when pinging the Variations server. | 278 // when pinging the Variations server. |
279 optional string parameter = 1; | 279 optional string parameter = 1; |
280 } | 280 } |
281 | 281 |
| 282 message AttestationSettingsProto { |
| 283 // Attestation involves proving that a cryptographic key is protected by a |
| 284 // legitimate Chrome OS TPM and reporting the operating mode of the platform. |
| 285 // This setting enables attestation features at a device level. If this is |
| 286 // enabled a machine key will be generated and certified by the Chrome OS |
| 287 // CA. If this setting is disabled, the device will not communicate with the |
| 288 // Chrome OS CA under any circumstances. Even users with attestation settings |
| 289 // enabled will not be able to use those features on the device. |
| 290 optional bool attestation_enabled = 1; |
| 291 } |
| 292 |
282 message ChromeDeviceSettingsProto { | 293 message ChromeDeviceSettingsProto { |
283 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 294 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
284 optional UserWhitelistProto user_whitelist = 2; | 295 optional UserWhitelistProto user_whitelist = 2; |
285 optional GuestModeEnabledProto guest_mode_enabled = 3; | 296 optional GuestModeEnabledProto guest_mode_enabled = 3; |
286 optional DeviceProxySettingsProto device_proxy_settings = 4; | 297 optional DeviceProxySettingsProto device_proxy_settings = 4; |
287 optional CameraEnabledProto camera_enabled = 5; | 298 optional CameraEnabledProto camera_enabled = 5; |
288 optional ShowUserNamesOnSigninProto show_user_names = 6; | 299 optional ShowUserNamesOnSigninProto show_user_names = 6; |
289 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 300 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
290 optional AllowNewUsersProto allow_new_users = 8; | 301 optional AllowNewUsersProto allow_new_users = 8; |
291 optional MetricsEnabledProto metrics_enabled = 9; | 302 optional MetricsEnabledProto metrics_enabled = 9; |
292 optional ReleaseChannelProto release_channel = 10; | 303 optional ReleaseChannelProto release_channel = 10; |
293 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 304 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
294 optional DeviceReportingProto device_reporting = 12; | 305 optional DeviceReportingProto device_reporting = 12; |
295 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 306 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
296 optional AppPackProto app_pack = 14; | 307 optional AppPackProto app_pack = 14; |
297 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 308 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
298 optional ScreenSaverProto login_screen_saver = 16; | 309 optional ScreenSaverProto login_screen_saver = 16; |
299 optional AutoUpdateSettingsProto auto_update_settings = 17; | 310 optional AutoUpdateSettingsProto auto_update_settings = 17; |
300 optional StartUpUrlsProto start_up_urls = 18; | 311 optional StartUpUrlsProto start_up_urls = 18; |
301 optional PinnedAppsProto pinned_apps = 19; | 312 optional PinnedAppsProto pinned_apps = 19; |
302 optional SystemTimezoneProto system_timezone = 20; | 313 optional SystemTimezoneProto system_timezone = 20; |
303 optional DeviceLocalAccountsProto device_local_accounts = 21; | 314 optional DeviceLocalAccountsProto device_local_accounts = 21; |
304 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 315 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
305 optional StartUpFlagsProto start_up_flags = 23; | 316 optional StartUpFlagsProto start_up_flags = 23; |
306 optional UptimeLimitProto uptime_limit = 24; | 317 optional UptimeLimitProto uptime_limit = 24; |
307 optional VariationsParameterProto variations_parameter = 25; | 318 optional VariationsParameterProto variations_parameter = 25; |
| 319 optional AttestationSettingsProto attestation_settings = 26; |
308 } | 320 } |
OLD | NEW |