| 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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 749 message LoginVideoCaptureAllowedUrlsProto { | 749 message LoginVideoCaptureAllowedUrlsProto { |
| 750 repeated string urls = 1; | 750 repeated string urls = 1; |
| 751 } | 751 } |
| 752 | 752 |
| 753 message NetworkThrottlingEnabledProto { | 753 message NetworkThrottlingEnabledProto { |
| 754 optional bool enabled = 1 [default = false]; | 754 optional bool enabled = 1 [default = false]; |
| 755 optional int32 upload_rate_kbits = 2 [default = 0]; | 755 optional int32 upload_rate_kbits = 2 [default = 0]; |
| 756 optional int32 download_rate_kbits = 3 [default = 0]; | 756 optional int32 download_rate_kbits = 3 [default = 0]; |
| 757 } | 757 } |
| 758 | 758 |
| 759 // A list of app-ids to install from the webstore on the login page. | 759 // A list of apps to install from the webstore on the login page. It is a list |
| 760 message LoginAppsProto { | 760 // of strings, each string contains an extension ID and an update URL, delimited |
| 761 repeated string login_apps = 1; | 761 // by a semicolon. |
| 762 message DeviceLoginScreenAppInstallListProto { |
| 763 repeated string device_login_screen_app_install_list = 1; |
| 762 } | 764 } |
| 763 | 765 |
| 764 // A list of allowed locales on the login screen. | 766 // A list of allowed locales on the login screen. |
| 765 message LoginScreenLocalesProto { | 767 message LoginScreenLocalesProto { |
| 766 repeated string login_screen_locales = 1; | 768 repeated string login_screen_locales = 1; |
| 767 } | 769 } |
| 768 | 770 |
| 769 // A list of allowed input methods on the login screen. | 771 // A list of allowed input methods on the login screen. |
| 770 message LoginScreenInputMethodsProto { | 772 message LoginScreenInputMethodsProto { |
| 771 repeated string login_screen_input_methods = 1; | 773 repeated string login_screen_input_methods = 1; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; | 824 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
| 823 optional DisplayRotationDefaultProto display_rotation_default = 39; | 825 optional DisplayRotationDefaultProto display_rotation_default = 39; |
| 824 optional AllowKioskAppControlChromeVersionProto | 826 optional AllowKioskAppControlChromeVersionProto |
| 825 allow_kiosk_app_control_chrome_version = 40; | 827 allow_kiosk_app_control_chrome_version = 40; |
| 826 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 828 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| 827 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 829 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| 828 optional AllowBluetoothProto allow_bluetooth = 43; | 830 optional AllowBluetoothProto allow_bluetooth = 43; |
| 829 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 831 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
| 830 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 832 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 831 45; | 833 45; |
| 832 optional LoginAppsProto login_apps = 46; | 834 optional DeviceLoginScreenAppInstallListProto |
| 835 device_login_screen_app_install_list = 46; |
| 833 optional NetworkThrottlingEnabledProto network_throttling = 47; | 836 optional NetworkThrottlingEnabledProto network_throttling = 47; |
| 834 optional DeviceWallpaperImageProto device_wallpaper_image = 48; | 837 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
| 835 optional LoginScreenLocalesProto login_screen_locales = 49; | 838 optional LoginScreenLocalesProto login_screen_locales = 49; |
| 836 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; | 839 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; |
| 837 } | 840 } |
| OLD | NEW |