| 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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 optional bool quirks_download_enabled = 1; | 704 optional bool quirks_download_enabled = 1; |
| 705 } | 705 } |
| 706 | 706 |
| 707 // A list of security origins for SAML login pages that are allowed to | 707 // A list of security origins for SAML login pages that are allowed to |
| 708 // access the webcam. No login pages will be allowed to access the | 708 // access the webcam. No login pages will be allowed to access the |
| 709 // webcam if the list is empty. | 709 // webcam if the list is empty. |
| 710 message LoginVideoCaptureAllowedUrlsProto { | 710 message LoginVideoCaptureAllowedUrlsProto { |
| 711 repeated string urls = 1; | 711 repeated string urls = 1; |
| 712 } | 712 } |
| 713 | 713 |
| 714 // A list of app-ids to install from the webstore on the login page. |
| 715 message LoginAppsProto { |
| 716 repeated string login_apps = 1; |
| 717 } |
| 718 |
| 714 message ChromeDeviceSettingsProto { | 719 message ChromeDeviceSettingsProto { |
| 715 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 720 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 716 optional UserWhitelistProto user_whitelist = 2; | 721 optional UserWhitelistProto user_whitelist = 2; |
| 717 optional GuestModeEnabledProto guest_mode_enabled = 3; | 722 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 718 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 723 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
| 719 [deprecated = true]; | 724 [deprecated = true]; |
| 720 optional CameraEnabledProto camera_enabled = 5; | 725 optional CameraEnabledProto camera_enabled = 5; |
| 721 optional ShowUserNamesOnSigninProto show_user_names = 6; | 726 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 722 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 727 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 723 optional AllowNewUsersProto allow_new_users = 8; | 728 optional AllowNewUsersProto allow_new_users = 8; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; | 761 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
| 757 optional DisplayRotationDefaultProto display_rotation_default = 39; | 762 optional DisplayRotationDefaultProto display_rotation_default = 39; |
| 758 optional AllowKioskAppControlChromeVersionProto | 763 optional AllowKioskAppControlChromeVersionProto |
| 759 allow_kiosk_app_control_chrome_version = 40; | 764 allow_kiosk_app_control_chrome_version = 40; |
| 760 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 765 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| 761 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 766 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| 762 optional AllowBluetoothProto allow_bluetooth = 43; | 767 optional AllowBluetoothProto allow_bluetooth = 43; |
| 763 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 768 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
| 764 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 769 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 765 45; | 770 45; |
| 771 optional LoginAppsProto login_apps = 46; |
| 766 } | 772 } |
| OLD | NEW |