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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 747 optional bool enabled = 1 [default = false]; | 747 optional bool enabled = 1 [default = false]; |
| 748 optional int32 upload_rate_kbits = 2 [default = 0]; | 748 optional int32 upload_rate_kbits = 2 [default = 0]; |
| 749 optional int32 download_rate_kbits = 3 [default = 0]; | 749 optional int32 download_rate_kbits = 3 [default = 0]; |
| 750 } | 750 } |
| 751 | 751 |
| 752 // A list of app-ids to install from the webstore on the login page. | 752 // A list of app-ids to install from the webstore on the login page. |
| 753 message LoginAppsProto { | 753 message LoginAppsProto { |
| 754 repeated string login_apps = 1; | 754 repeated string login_apps = 1; |
| 755 } | 755 } |
| 756 | 756 |
| 757 // A list of allowed locales on the login page. | |
|
Thiemo Nagel
2017/02/13 11:33:20
Nit: login screen
pmarko
2017/02/13 17:50:31
You're right. Mini-CL to correct this: https://cod
| |
| 758 message LoginScreenLocalesProto { | |
| 759 repeated string login_screen_locales = 1; | |
| 760 } | |
| 761 | |
| 762 // A list of allowed input methods on the login page. | |
|
Thiemo Nagel
2017/02/13 11:33:20
Nit: login screen
pmarko
2017/02/13 17:50:31
See above.
| |
| 763 message LoginScreenInputMethodsProto { | |
| 764 repeated string login_screen_input_methods = 1; | |
| 765 } | |
| 766 | |
| 757 // The url and hash that specified in JSON format that can be used to set the | 767 // The url and hash that specified in JSON format that can be used to set the |
| 758 // device-level wallpaper on the login screen before any user logs in. | 768 // device-level wallpaper on the login screen before any user logs in. |
| 759 message DeviceWallpaperImageProto { | 769 message DeviceWallpaperImageProto { |
| 760 optional string device_wallpaper_image = 1; | 770 optional string device_wallpaper_image = 1; |
| 761 } | 771 } |
| 762 | 772 |
| 763 message ChromeDeviceSettingsProto { | 773 message ChromeDeviceSettingsProto { |
| 764 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 774 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 765 optional UserWhitelistProto user_whitelist = 2; | 775 optional UserWhitelistProto user_whitelist = 2; |
| 766 optional GuestModeEnabledProto guest_mode_enabled = 3; | 776 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 808 allow_kiosk_app_control_chrome_version = 40; | 818 allow_kiosk_app_control_chrome_version = 40; |
| 809 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 819 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| 810 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 820 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| 811 optional AllowBluetoothProto allow_bluetooth = 43; | 821 optional AllowBluetoothProto allow_bluetooth = 43; |
| 812 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 822 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
| 813 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 823 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 814 45; | 824 45; |
| 815 optional LoginAppsProto login_apps = 46; | 825 optional LoginAppsProto login_apps = 46; |
| 816 optional NetworkThrottlingEnabledProto network_throttling = 47; | 826 optional NetworkThrottlingEnabledProto network_throttling = 47; |
| 817 optional DeviceWallpaperImageProto device_wallpaper_image = 48; | 827 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
| 828 optional LoginScreenLocalesProto login_screen_locales = 49; | |
| 829 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; | |
| 818 } | 830 } |
| OLD | NEW |