| 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 // override this setting by enabling or disabling the screen magnifier. | 401 // override this setting by enabling or disabling the screen magnifier. |
| 402 // However, the user's choice is not persistent and the default is restored | 402 // However, the user's choice is not persistent and the default is restored |
| 403 // whenever the login screen is shown anew or the user remains idle on the | 403 // whenever the login screen is shown anew or the user remains idle on the |
| 404 // login screen for a minute. If this policy is left unset, the screen | 404 // login screen for a minute. If this policy is left unset, the screen |
| 405 // magnifier is disabled when the login screen is first shown. Users can | 405 // magnifier is disabled when the login screen is first shown. Users can |
| 406 // enable or disable the screen magnifier anytime and its status on the login | 406 // enable or disable the screen magnifier anytime and its status on the login |
| 407 // screen is persisted between users. | 407 // screen is persisted between users. |
| 408 optional ScreenMagnifierType login_screen_default_screen_magnifier_type = 4; | 408 optional ScreenMagnifierType login_screen_default_screen_magnifier_type = 4; |
| 409 } | 409 } |
| 410 | 410 |
| 411 message SupervisedUsersSettingsProto { |
| 412 // Defines whether supervised users can be created on the device. |
| 413 optional bool supervised_users_enabled = 1; |
| 414 } |
| 415 |
| 411 message ChromeDeviceSettingsProto { | 416 message ChromeDeviceSettingsProto { |
| 412 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 417 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 413 optional UserWhitelistProto user_whitelist = 2; | 418 optional UserWhitelistProto user_whitelist = 2; |
| 414 optional GuestModeEnabledProto guest_mode_enabled = 3; | 419 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 415 optional DeviceProxySettingsProto device_proxy_settings = 4; | 420 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 416 optional CameraEnabledProto camera_enabled = 5; | 421 optional CameraEnabledProto camera_enabled = 5; |
| 417 optional ShowUserNamesOnSigninProto show_user_names = 6; | 422 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 418 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 423 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 419 optional AllowNewUsersProto allow_new_users = 8; | 424 optional AllowNewUsersProto allow_new_users = 8; |
| 420 optional MetricsEnabledProto metrics_enabled = 9; | 425 optional MetricsEnabledProto metrics_enabled = 9; |
| 421 optional ReleaseChannelProto release_channel = 10; | 426 optional ReleaseChannelProto release_channel = 10; |
| 422 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 427 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 423 optional DeviceReportingProto device_reporting = 12; | 428 optional DeviceReportingProto device_reporting = 12; |
| 424 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 429 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 425 optional AppPackProto app_pack = 14; | 430 optional AppPackProto app_pack = 14; |
| 426 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 431 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 427 optional ScreenSaverProto login_screen_saver = 16; | 432 optional ScreenSaverProto login_screen_saver = 16; |
| 428 optional AutoUpdateSettingsProto auto_update_settings = 17; | 433 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 429 optional StartUpUrlsProto start_up_urls = 18; | 434 optional StartUpUrlsProto start_up_urls = 18; |
| 430 optional PinnedAppsProto pinned_apps = 19; | 435 optional PinnedAppsProto pinned_apps = 19; |
| 431 optional SystemTimezoneProto system_timezone = 20; | 436 optional SystemTimezoneProto system_timezone = 20; |
| 432 optional DeviceLocalAccountsProto device_local_accounts = 21; | 437 optional DeviceLocalAccountsProto device_local_accounts = 21; |
| 433 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 438 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 434 optional StartUpFlagsProto start_up_flags = 23; | 439 optional StartUpFlagsProto start_up_flags = 23; |
| 435 optional UptimeLimitProto uptime_limit = 24; | 440 optional UptimeLimitProto uptime_limit = 24; |
| 436 optional VariationsParameterProto variations_parameter = 25; | 441 optional VariationsParameterProto variations_parameter = 25; |
| 437 optional AttestationSettingsProto attestation_settings = 26; | 442 optional AttestationSettingsProto attestation_settings = 26; |
| 438 optional AccessibilitySettingsProto accessibility_settings = 27; | 443 optional AccessibilitySettingsProto accessibility_settings = 27; |
| 444 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
| 439 } | 445 } |
| OLD | NEW |