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 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 optional bool quirks_download_enabled = 1; | 736 optional bool quirks_download_enabled = 1; |
737 } | 737 } |
738 | 738 |
739 // A list of security origins for SAML login pages that are allowed to | 739 // A list of security origins for SAML login pages that are allowed to |
740 // access the webcam. No login pages will be allowed to access the | 740 // access the webcam. No login pages will be allowed to access the |
741 // webcam if the list is empty. | 741 // webcam if the list is empty. |
742 message LoginVideoCaptureAllowedUrlsProto { | 742 message LoginVideoCaptureAllowedUrlsProto { |
743 repeated string urls = 1; | 743 repeated string urls = 1; |
744 } | 744 } |
745 | 745 |
746 message NetworkThrottlingEnabledProto { | |
747 optional bool enabled = 1 [default = false]; | |
748 optional int32 upload_rate_kbits = 2 [default = 0]; | |
749 optional int32 download_rate_kbits = 3 [default = 0]; | |
750 } | |
751 | |
752 // A list of app-ids to install from the webstore on the login page. | 746 // A list of app-ids to install from the webstore on the login page. |
753 message LoginAppsProto { | 747 message LoginAppsProto { |
754 repeated string login_apps = 1; | 748 repeated string login_apps = 1; |
755 } | 749 } |
756 | 750 |
757 message ChromeDeviceSettingsProto { | 751 message ChromeDeviceSettingsProto { |
758 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 752 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
759 optional UserWhitelistProto user_whitelist = 2; | 753 optional UserWhitelistProto user_whitelist = 2; |
760 optional GuestModeEnabledProto guest_mode_enabled = 3; | 754 optional GuestModeEnabledProto guest_mode_enabled = 3; |
761 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 755 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 optional DisplayRotationDefaultProto display_rotation_default = 39; | 794 optional DisplayRotationDefaultProto display_rotation_default = 39; |
801 optional AllowKioskAppControlChromeVersionProto | 795 optional AllowKioskAppControlChromeVersionProto |
802 allow_kiosk_app_control_chrome_version = 40; | 796 allow_kiosk_app_control_chrome_version = 40; |
803 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 797 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
804 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 798 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
805 optional AllowBluetoothProto allow_bluetooth = 43; | 799 optional AllowBluetoothProto allow_bluetooth = 43; |
806 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 800 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
807 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 801 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
808 45; | 802 45; |
809 optional LoginAppsProto login_apps = 46; | 803 optional LoginAppsProto login_apps = 46; |
810 optional NetworkThrottlingEnabledProto network_throttling = 47; | |
811 } | 804 } |
OLD | NEW |