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 // 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. |
| 759 message DeviceWallpaperImageProto { |
| 760 optional string device_wallpaper_image = 1; |
| 761 } |
| 762 |
757 message ChromeDeviceSettingsProto { | 763 message ChromeDeviceSettingsProto { |
758 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 764 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
759 optional UserWhitelistProto user_whitelist = 2; | 765 optional UserWhitelistProto user_whitelist = 2; |
760 optional GuestModeEnabledProto guest_mode_enabled = 3; | 766 optional GuestModeEnabledProto guest_mode_enabled = 3; |
761 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 767 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
762 [deprecated = true]; | 768 [deprecated = true]; |
763 optional CameraEnabledProto camera_enabled = 5; | 769 optional CameraEnabledProto camera_enabled = 5; |
764 optional ShowUserNamesOnSigninProto show_user_names = 6; | 770 optional ShowUserNamesOnSigninProto show_user_names = 6; |
765 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 771 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
766 optional AllowNewUsersProto allow_new_users = 8; | 772 optional AllowNewUsersProto allow_new_users = 8; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 optional AllowKioskAppControlChromeVersionProto | 807 optional AllowKioskAppControlChromeVersionProto |
802 allow_kiosk_app_control_chrome_version = 40; | 808 allow_kiosk_app_control_chrome_version = 40; |
803 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 809 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
804 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 810 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
805 optional AllowBluetoothProto allow_bluetooth = 43; | 811 optional AllowBluetoothProto allow_bluetooth = 43; |
806 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 812 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
807 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 813 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
808 45; | 814 45; |
809 optional LoginAppsProto login_apps = 46; | 815 optional LoginAppsProto login_apps = 46; |
810 optional NetworkThrottlingEnabledProto network_throttling = 47; | 816 optional NetworkThrottlingEnabledProto network_throttling = 47; |
| 817 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
811 } | 818 } |
OLD | NEW |