| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 // Attestation involves proving that a cryptographic key is protected by a | 340 // Attestation involves proving that a cryptographic key is protected by a |
| 341 // legitimate Chrome OS TPM and reporting the operating mode of the platform. | 341 // legitimate Chrome OS TPM and reporting the operating mode of the platform. |
| 342 // This setting enables attestation features at a device level. If this is | 342 // This setting enables attestation features at a device level. If this is |
| 343 // enabled a machine key will be generated and certified by the Chrome OS | 343 // enabled a machine key will be generated and certified by the Chrome OS |
| 344 // CA. If this setting is disabled, the device will not communicate with the | 344 // CA. If this setting is disabled, the device will not communicate with the |
| 345 // Chrome OS CA under any circumstances. Even users with attestation settings | 345 // Chrome OS CA under any circumstances. Even users with attestation settings |
| 346 // enabled will not be able to use those features on the device. | 346 // enabled will not be able to use those features on the device. |
| 347 optional bool attestation_enabled = 1; | 347 optional bool attestation_enabled = 1; |
| 348 } | 348 } |
| 349 | 349 |
| 350 message LocallyManagedUsersSettingsProto { |
| 351 // Defines whether locally managed users can be created on the device. |
| 352 optional bool locally_managed_users_enabled = 1; |
| 353 } |
| 354 |
| 350 message ChromeDeviceSettingsProto { | 355 message ChromeDeviceSettingsProto { |
| 351 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 356 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 352 optional UserWhitelistProto user_whitelist = 2; | 357 optional UserWhitelistProto user_whitelist = 2; |
| 353 optional GuestModeEnabledProto guest_mode_enabled = 3; | 358 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 354 optional DeviceProxySettingsProto device_proxy_settings = 4; | 359 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 355 optional CameraEnabledProto camera_enabled = 5; | 360 optional CameraEnabledProto camera_enabled = 5; |
| 356 optional ShowUserNamesOnSigninProto show_user_names = 6; | 361 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 357 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 362 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 358 optional AllowNewUsersProto allow_new_users = 8; | 363 optional AllowNewUsersProto allow_new_users = 8; |
| 359 optional MetricsEnabledProto metrics_enabled = 9; | 364 optional MetricsEnabledProto metrics_enabled = 9; |
| 360 optional ReleaseChannelProto release_channel = 10; | 365 optional ReleaseChannelProto release_channel = 10; |
| 361 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 366 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 362 optional DeviceReportingProto device_reporting = 12; | 367 optional DeviceReportingProto device_reporting = 12; |
| 363 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 368 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 364 optional AppPackProto app_pack = 14; | 369 optional AppPackProto app_pack = 14; |
| 365 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 370 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 366 optional ScreenSaverProto login_screen_saver = 16; | 371 optional ScreenSaverProto login_screen_saver = 16; |
| 367 optional AutoUpdateSettingsProto auto_update_settings = 17; | 372 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 368 optional StartUpUrlsProto start_up_urls = 18; | 373 optional StartUpUrlsProto start_up_urls = 18; |
| 369 optional PinnedAppsProto pinned_apps = 19; | 374 optional PinnedAppsProto pinned_apps = 19; |
| 370 optional SystemTimezoneProto system_timezone = 20; | 375 optional SystemTimezoneProto system_timezone = 20; |
| 371 optional DeviceLocalAccountsProto device_local_accounts = 21; | 376 optional DeviceLocalAccountsProto device_local_accounts = 21; |
| 372 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 377 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 373 optional StartUpFlagsProto start_up_flags = 23; | 378 optional StartUpFlagsProto start_up_flags = 23; |
| 374 optional UptimeLimitProto uptime_limit = 24; | 379 optional UptimeLimitProto uptime_limit = 24; |
| 375 optional VariationsParameterProto variations_parameter = 25; | 380 optional VariationsParameterProto variations_parameter = 25; |
| 376 optional AttestationSettingsProto attestation_settings = 26; | 381 optional AttestationSettingsProto attestation_settings = 26; |
| 382 optional LocallyManagedUsersSettingsProto locally_managed_users_settings = 27; |
| 377 } | 383 } |
| OLD | NEW |