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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 772 message LoginScreenInputMethodsProto { | 772 message LoginScreenInputMethodsProto { |
| 773 repeated string login_screen_input_methods = 1; | 773 repeated string login_screen_input_methods = 1; |
| 774 } | 774 } |
| 775 | 775 |
| 776 // The url and hash that specified in JSON format that can be used to set the | 776 // The url and hash that specified in JSON format that can be used to set the |
| 777 // device-level wallpaper on the login screen before any user logs in. | 777 // device-level wallpaper on the login screen before any user logs in. |
| 778 message DeviceWallpaperImageProto { | 778 message DeviceWallpaperImageProto { |
| 779 optional string device_wallpaper_image = 1; | 779 optional string device_wallpaper_image = 1; |
| 780 } | 780 } |
| 781 | 781 |
| 782 // Migration strategy for the case when ARC(N) needs the ext4 encryption while | |
|
use bartfab instead
2017/05/17 14:28:10
Nit: s/N/N+/
| |
| 783 // the device used ecryptfs in the past. | |
| 784 message DeviceEcryptfsMigrationStrategyProto { | |
| 785 enum MigrationStrategy { | |
| 786 // ARC is not allowed, no data migration needed. | |
| 787 DISALLOW_ARC = 0; | |
| 788 // The data migration is allowed, opening the possibility to use ARC. | |
| 789 ALLOW_MIGRATION = 1; | |
| 790 }; | |
| 791 | |
| 792 optional MigrationStrategy migration_strategy = 1 [default = DISALLOW_ARC]; | |
| 793 } | |
| 794 | |
| 782 message ChromeDeviceSettingsProto { | 795 message ChromeDeviceSettingsProto { |
| 783 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 796 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 784 optional UserWhitelistProto user_whitelist = 2; | 797 optional UserWhitelistProto user_whitelist = 2; |
| 785 optional GuestModeEnabledProto guest_mode_enabled = 3; | 798 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 786 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 799 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
| 787 [deprecated = true]; | 800 [deprecated = true]; |
| 788 optional CameraEnabledProto camera_enabled = 5; | 801 optional CameraEnabledProto camera_enabled = 5; |
| 789 optional ShowUserNamesOnSigninProto show_user_names = 6; | 802 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 790 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 803 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 791 optional AllowNewUsersProto allow_new_users = 8; | 804 optional AllowNewUsersProto allow_new_users = 8; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 830 optional AllowBluetoothProto allow_bluetooth = 43; | 843 optional AllowBluetoothProto allow_bluetooth = 43; |
| 831 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 844 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
| 832 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 845 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 833 45; | 846 45; |
| 834 optional DeviceLoginScreenAppInstallListProto | 847 optional DeviceLoginScreenAppInstallListProto |
| 835 device_login_screen_app_install_list = 46; | 848 device_login_screen_app_install_list = 46; |
| 836 optional NetworkThrottlingEnabledProto network_throttling = 47; | 849 optional NetworkThrottlingEnabledProto network_throttling = 47; |
| 837 optional DeviceWallpaperImageProto device_wallpaper_image = 48; | 850 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
| 838 optional LoginScreenLocalesProto login_screen_locales = 49; | 851 optional LoginScreenLocalesProto login_screen_locales = 49; |
| 839 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; | 852 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; |
| 853 optional DeviceEcryptfsMigrationStrategyProto | |
| 854 device_ecryptfs_migration_strategy = 51; | |
| 840 } | 855 } |
| OLD | NEW |