| 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 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 UNSET = 0; | 787 UNSET = 0; |
| 788 // ARC is not allowed, no data migration needed. | 788 // ARC is not allowed, no data migration needed. |
| 789 DISALLOW_ARC = 1; | 789 DISALLOW_ARC = 1; |
| 790 // The data migration is allowed, opening the possibility to use ARC. | 790 // The data migration is allowed, opening the possibility to use ARC. |
| 791 ALLOW_MIGRATION = 2; | 791 ALLOW_MIGRATION = 2; |
| 792 }; | 792 }; |
| 793 | 793 |
| 794 optional MigrationStrategy migration_strategy = 1; | 794 optional MigrationStrategy migration_strategy = 1; |
| 795 } | 795 } |
| 796 | 796 |
| 797 // An app on Chrome Web Store whose manifest key "required_platform_version" |
| 798 // value would be used as the OS pin. Note the app does not have to be present |
| 799 // on the device. The pin is applied on the server side. |
| 800 message AppToPinOS { |
| 801 optional string app_id = 1; |
| 802 } |
| 803 |
| 797 message ChromeDeviceSettingsProto { | 804 message ChromeDeviceSettingsProto { |
| 798 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 805 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 799 optional UserWhitelistProto user_whitelist = 2; | 806 optional UserWhitelistProto user_whitelist = 2; |
| 800 optional GuestModeEnabledProto guest_mode_enabled = 3; | 807 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 801 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 808 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
| 802 [deprecated = true]; | 809 [deprecated = true]; |
| 803 optional CameraEnabledProto camera_enabled = 5; | 810 optional CameraEnabledProto camera_enabled = 5; |
| 804 optional ShowUserNamesOnSigninProto show_user_names = 6; | 811 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 805 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 812 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 806 optional AllowNewUsersProto allow_new_users = 8; | 813 optional AllowNewUsersProto allow_new_users = 8; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 854 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 848 45; | 855 45; |
| 849 optional DeviceLoginScreenAppInstallListProto | 856 optional DeviceLoginScreenAppInstallListProto |
| 850 device_login_screen_app_install_list = 46; | 857 device_login_screen_app_install_list = 46; |
| 851 optional NetworkThrottlingEnabledProto network_throttling = 47; | 858 optional NetworkThrottlingEnabledProto network_throttling = 47; |
| 852 optional DeviceWallpaperImageProto device_wallpaper_image = 48; | 859 optional DeviceWallpaperImageProto device_wallpaper_image = 48; |
| 853 optional LoginScreenLocalesProto login_screen_locales = 49; | 860 optional LoginScreenLocalesProto login_screen_locales = 49; |
| 854 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; | 861 optional LoginScreenInputMethodsProto login_screen_input_methods = 50; |
| 855 optional DeviceEcryptfsMigrationStrategyProto | 862 optional DeviceEcryptfsMigrationStrategyProto |
| 856 device_ecryptfs_migration_strategy = 51; | 863 device_ecryptfs_migration_strategy = 51; |
| 864 optional AppToPinOS app_to_pin_os = 52; |
| 857 } | 865 } |
| OLD | NEW |