Chromium Code Reviews| 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 576 } | 576 } |
| 577 | 577 |
| 578 // Settings that control login for SAML users. | 578 // Settings that control login for SAML users. |
| 579 message SAMLSettingsProto { | 579 message SAMLSettingsProto { |
| 580 // Whether cookies set by a SAML IdP should be transferred to users' profiles | 580 // Whether cookies set by a SAML IdP should be transferred to users' profiles |
| 581 // every time a user authenticates via SAML during login. If false, cookies | 581 // every time a user authenticates via SAML during login. If false, cookies |
| 582 // are transferred during each user's first login only. | 582 // are transferred during each user's first login only. |
| 583 optional bool transfer_saml_cookies = 1; | 583 optional bool transfer_saml_cookies = 1; |
| 584 } | 584 } |
| 585 | 585 |
| 586 message RebootOnShutdownProto { | |
| 587 // Determines whether the device may be shut down. If this flag is set to | |
|
bartfab (slow)
2014/12/15 18:01:56
Nit: Now that the policy was renamed, I think this
cschuet (SLOW)
2014/12/16 10:02:07
Done.
| |
| 588 // true, shutdown is forbidden and UI elements trigger a device reboot instead | |
| 589 // of a power off. This policy controls shutdown via the UI only. | |
| 590 optional bool reboot_on_shutdown = 1 [default = false]; | |
| 591 } | |
| 592 | |
| 586 message ChromeDeviceSettingsProto { | 593 message ChromeDeviceSettingsProto { |
| 587 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 594 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 588 optional UserWhitelistProto user_whitelist = 2; | 595 optional UserWhitelistProto user_whitelist = 2; |
| 589 optional GuestModeEnabledProto guest_mode_enabled = 3; | 596 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 590 optional DeviceProxySettingsProto device_proxy_settings = 4; | 597 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 591 optional CameraEnabledProto camera_enabled = 5; | 598 optional CameraEnabledProto camera_enabled = 5; |
| 592 optional ShowUserNamesOnSigninProto show_user_names = 6; | 599 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 593 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 600 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 594 optional AllowNewUsersProto allow_new_users = 8; | 601 optional AllowNewUsersProto allow_new_users = 8; |
| 595 optional MetricsEnabledProto metrics_enabled = 9; | 602 optional MetricsEnabledProto metrics_enabled = 9; |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 610 optional UptimeLimitProto uptime_limit = 24; | 617 optional UptimeLimitProto uptime_limit = 24; |
| 611 optional VariationsParameterProto variations_parameter = 25; | 618 optional VariationsParameterProto variations_parameter = 25; |
| 612 optional AttestationSettingsProto attestation_settings = 26; | 619 optional AttestationSettingsProto attestation_settings = 26; |
| 613 optional AccessibilitySettingsProto accessibility_settings = 27; | 620 optional AccessibilitySettingsProto accessibility_settings = 27; |
| 614 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 621 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
| 615 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 622 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
| 616 optional SystemUse24HourClockProto use_24hour_clock = 30; | 623 optional SystemUse24HourClockProto use_24hour_clock = 30; |
| 617 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 624 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
| 618 optional SystemSettingsProto system_settings = 32; | 625 optional SystemSettingsProto system_settings = 32; |
| 619 optional SAMLSettingsProto saml_settings = 33; | 626 optional SAMLSettingsProto saml_settings = 33; |
| 627 optional RebootOnShutdownProto reboot_on_shutdown = 34; | |
| 620 } | 628 } |
| OLD | NEW |