| 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 optional bool enabled = 1 [default = false]; | 753 optional bool enabled = 1 [default = false]; |
| 754 optional int32 upload_rate_kbits = 2 [default = 0]; | 754 optional int32 upload_rate_kbits = 2 [default = 0]; |
| 755 optional int32 download_rate_kbits = 3 [default = 0]; | 755 optional int32 download_rate_kbits = 3 [default = 0]; |
| 756 } | 756 } |
| 757 | 757 |
| 758 // A list of app-ids to install from the webstore on the login page. | 758 // A list of app-ids to install from the webstore on the login page. |
| 759 message LoginAppsProto { | 759 message LoginAppsProto { |
| 760 repeated string login_apps = 1; | 760 repeated string login_apps = 1; |
| 761 } | 761 } |
| 762 | 762 |
| 763 // A list of allowed locales on the login page. | 763 // A list of allowed locales on the login screen. |
| 764 message LoginScreenLocalesProto { | 764 message LoginScreenLocalesProto { |
| 765 repeated string login_screen_locales = 1; | 765 repeated string login_screen_locales = 1; |
| 766 } | 766 } |
| 767 | 767 |
| 768 // A list of allowed input methods on the login page. | 768 // A list of allowed input methods on the login screen. |
| 769 message LoginScreenInputMethodsProto { | 769 message LoginScreenInputMethodsProto { |
| 770 repeated string login_screen_input_methods = 1; | 770 repeated string login_screen_input_methods = 1; |
| 771 } | 771 } |
| 772 | 772 |
| 773 // The url and hash that specified in JSON format that can be used to set the | 773 // The url and hash that specified in JSON format that can be used to set the |
| 774 // device-level wallpaper on the login screen before any user logs in. | 774 // device-level wallpaper on the login screen before any user logs in. |
| 775 message DeviceWallpaperImageProto { | 775 message DeviceWallpaperImageProto { |
| 776 optional string device_wallpaper_image = 1; | 776 optional string device_wallpaper_image = 1; |
| 777 } | 777 } |
| 778 | 778 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 optional AllowBluetoothProto allow_bluetooth = 43; | 827 optional AllowBluetoothProto allow_bluetooth = 43; |
| 828 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 828 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
| 829 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 829 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 830 45; | 830 45; |
| 831 optional LoginAppsProto login_apps = 46; | 831 optional LoginAppsProto login_apps = 46; |
| 832 optional NetworkThrottlingEnabledProto network_throttling = 47; | 832 optional NetworkThrottlingEnabledProto network_throttling = 47; |
| 833 optional DeviceWallpaperImageProto device_wallpaper_image = 48; | 833 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
| 834 optional LoginScreenLocalesProto login_screen_locales = 49; | 834 optional LoginScreenLocalesProto login_screen_locales = 49; |
| 835 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; | 835 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; |
| 836 } | 836 } |
| OLD | NEW |