| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 // This field was added but never used and there are no plans to support it | 114 // This field was added but never used and there are no plans to support it |
| 115 // eventually either. | 115 // eventually either. |
| 116 optional bool OBSOLETE_online_only = 3 [deprecated = true]; | 116 optional bool OBSOLETE_online_only = 3 [deprecated = true]; |
| 117 } | 117 } |
| 118 | 118 |
| 119 message AppPackProto { | 119 message AppPackProto { |
| 120 // List of extensions to install as part of the AppPack. | 120 // List of extensions to install as part of the AppPack. |
| 121 repeated AppPackEntryProto app_pack = 1; | 121 repeated AppPackEntryProto app_pack = 1; |
| 122 } | 122 } |
| 123 | 123 |
| 124 message KioskVirtualKeyboardProto { |
| 125 // This is a special policy for kiosk mode that specifies whether the virtual |
| 126 // keyboard should always be enabled. If non-null this should be a valid |
| 127 // keyboard layout. |
| 128 optional string layout = 1; |
| 129 } |
| 130 |
| 124 // This is a special policy for kiosk/retail mode that specifies what apps | 131 // This is a special policy for kiosk/retail mode that specifies what apps |
| 125 // should be pinned to the launcher. For regular accounts, pinned apps are | 132 // should be pinned to the launcher. For regular accounts, pinned apps are |
| 126 // controlled through user policy. | 133 // controlled through user policy. |
| 127 message PinnedAppsProto { | 134 message PinnedAppsProto { |
| 128 // App IDs for the apps to pin. | 135 // App IDs for the apps to pin. |
| 129 repeated string app_id = 1; | 136 repeated string app_id = 1; |
| 130 } | 137 } |
| 131 | 138 |
| 132 message ForcedLogoutTimeoutsProto { | 139 message ForcedLogoutTimeoutsProto { |
| 133 // All timeouts are specified in milliseconds. | 140 // All timeouts are specified in milliseconds. |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 optional StartUpFlagsProto start_up_flags = 23; | 606 optional StartUpFlagsProto start_up_flags = 23; |
| 600 optional UptimeLimitProto uptime_limit = 24; | 607 optional UptimeLimitProto uptime_limit = 24; |
| 601 optional VariationsParameterProto variations_parameter = 25; | 608 optional VariationsParameterProto variations_parameter = 25; |
| 602 optional AttestationSettingsProto attestation_settings = 26; | 609 optional AttestationSettingsProto attestation_settings = 26; |
| 603 optional AccessibilitySettingsProto accessibility_settings = 27; | 610 optional AccessibilitySettingsProto accessibility_settings = 27; |
| 604 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 611 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
| 605 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 612 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
| 606 optional SystemUse24HourClockProto use_24hour_clock = 30; | 613 optional SystemUse24HourClockProto use_24hour_clock = 30; |
| 607 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 614 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
| 608 optional SystemSettingsProto system_settings = 32; | 615 optional SystemSettingsProto system_settings = 32; |
| 616 optional KioskVirtualKeyboardProto kiosk_virtual_keyboard = 33; |
| 609 } | 617 } |
| OLD | NEW |