| 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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 } | 656 } |
| 657 | 657 |
| 658 // Settings that control the flow of the login authentication to be either via | 658 // Settings that control the flow of the login authentication to be either via |
| 659 // GAIA (default), or via an interstitial screen that can redirect to a SAML IdP | 659 // GAIA (default), or via an interstitial screen that can redirect to a SAML IdP |
| 660 // endpoint or return back to the default GAIA flow. | 660 // endpoint or return back to the default GAIA flow. |
| 661 message LoginAuthenticationBehaviorProto { | 661 message LoginAuthenticationBehaviorProto { |
| 662 enum LoginBehavior { | 662 enum LoginBehavior { |
| 663 GAIA = 0; | 663 GAIA = 0; |
| 664 SAML_INTERSTITIAL = 1; | 664 SAML_INTERSTITIAL = 1; |
| 665 }; | 665 }; |
| 666 | 666 |
| 667 optional LoginBehavior login_authentication_behavior = 1 [default = GAIA]; | 667 optional LoginBehavior login_authentication_behavior = 1 [default = GAIA]; |
| 668 } | 668 } |
| 669 | 669 |
| 670 // Identifiers of a USB device or device family. | 670 // Identifiers of a USB device or device family. |
| 671 message UsbDeviceIdProto { | 671 message UsbDeviceIdProto { |
| 672 // USB Vendor Identifier (aka idVendor). | 672 // USB Vendor Identifier (aka idVendor). |
| 673 optional int32 vendor_id = 1; | 673 optional int32 vendor_id = 1; |
| 674 // USB Product Identifier (aka idProduct). | 674 // USB Product Identifier (aka idProduct). |
| 675 optional int32 product_id = 2; | 675 optional int32 product_id = 2; |
| 676 } | 676 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 optional LoginScreenDomainAutoCompleteProto | 730 optional LoginScreenDomainAutoCompleteProto |
| 731 login_screen_domain_auto_complete = 37; | 731 login_screen_domain_auto_complete = 37; |
| 732 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; | 732 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
| 733 optional DisplayRotationDefaultProto display_rotation_default = 39; | 733 optional DisplayRotationDefaultProto display_rotation_default = 39; |
| 734 optional AllowKioskAppControlChromeVersionProto | 734 optional AllowKioskAppControlChromeVersionProto |
| 735 allow_kiosk_app_control_chrome_version = 40; | 735 allow_kiosk_app_control_chrome_version = 40; |
| 736 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 736 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| 737 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 737 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| 738 optional AllowBluetoothProto allow_bluetooth = 43; | 738 optional AllowBluetoothProto allow_bluetooth = 43; |
| 739 } | 739 } |
| OLD | NEW |