| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 message DeviceOpenNetworkConfigurationProto { | 88 message DeviceOpenNetworkConfigurationProto { |
| 89 // The network configuration blob. This is a JSON string as specified by ONC. | 89 // The network configuration blob. This is a JSON string as specified by ONC. |
| 90 optional string open_network_configuration = 1; | 90 optional string open_network_configuration = 1; |
| 91 } | 91 } |
| 92 | 92 |
| 93 // Policies to turn on portions of the device status reports. | 93 // Policies to turn on portions of the device status reports. |
| 94 message DeviceReportingProto { | 94 message DeviceReportingProto { |
| 95 optional bool report_version_info = 1; | 95 optional bool report_version_info = 1; |
| 96 optional bool report_activity_times = 2; | 96 optional bool report_activity_times = 2; |
| 97 optional bool report_boot_mode = 3; | 97 optional bool report_boot_mode = 3; |
| 98 optional bool report_location = 4; |
| 98 } | 99 } |
| 99 | 100 |
| 100 message EphemeralUsersEnabledProto { | 101 message EphemeralUsersEnabledProto { |
| 101 // Determines whether users should be treated as ephemeral. | 102 // Determines whether users should be treated as ephemeral. In ephemeral users |
| 103 // mode, no cryptohome is created for the user, but a tmpfs mount is used |
| 104 // instead such that upon logout all user state is discarded. |
| 102 optional bool ephemeral_users_enabled = 1; | 105 optional bool ephemeral_users_enabled = 1; |
| 103 } | 106 } |
| 104 | 107 |
| 105 // Details of an extension to install as part of the AppPack. | 108 // Details of an extension to install as part of the AppPack. |
| 106 message AppPackEntryProto { | 109 message AppPackEntryProto { |
| 107 optional string extension_id = 1; | 110 optional string extension_id = 1; |
| 108 optional string update_url = 2; | 111 optional string update_url = 2; |
| 109 optional bool online_only = 3; | 112 optional bool online_only = 3; |
| 110 } | 113 } |
| 111 | 114 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 optional ReleaseChannelProto release_channel = 10; | 182 optional ReleaseChannelProto release_channel = 10; |
| 180 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 183 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 181 optional DeviceReportingProto device_reporting = 12; | 184 optional DeviceReportingProto device_reporting = 12; |
| 182 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 185 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 183 optional AppPackProto app_pack = 14; | 186 optional AppPackProto app_pack = 14; |
| 184 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 187 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 185 optional ScreenSaverProto login_screen_saver = 16; | 188 optional ScreenSaverProto login_screen_saver = 16; |
| 186 optional AutoUpdateSettingsProto auto_update_settings = 17; | 189 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 187 optional StartUpUrlsProto start_up_urls = 18; | 190 optional StartUpUrlsProto start_up_urls = 18; |
| 188 } | 191 } |
| OLD | NEW |