| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 // The network configuration blob. This is a JSON string as specified by ONC. | 86 // The network configuration blob. This is a JSON string as specified by ONC. |
| 87 optional string open_network_configuration = 1; | 87 optional string open_network_configuration = 1; |
| 88 } | 88 } |
| 89 | 89 |
| 90 // Policies to turn on portions of the device status reports. | 90 // Policies to turn on portions of the device status reports. |
| 91 message DeviceReportingProto { | 91 message DeviceReportingProto { |
| 92 optional bool report_version_info = 1; | 92 optional bool report_version_info = 1; |
| 93 optional bool report_activity_times = 2; | 93 optional bool report_activity_times = 2; |
| 94 optional bool report_boot_mode = 3; | 94 optional bool report_boot_mode = 3; |
| 95 optional bool report_location = 4; | 95 optional bool report_location = 4; |
| 96 optional bool report_network_interfaces = 5; |
| 96 } | 97 } |
| 97 | 98 |
| 98 message EphemeralUsersEnabledProto { | 99 message EphemeralUsersEnabledProto { |
| 99 // Determines whether users should be treated as ephemeral. In ephemeral users | 100 // Determines whether users should be treated as ephemeral. In ephemeral users |
| 100 // mode, no cryptohome is created for the user, but a tmpfs mount is used | 101 // mode, no cryptohome is created for the user, but a tmpfs mount is used |
| 101 // instead such that upon logout all user state is discarded. | 102 // instead such that upon logout all user state is discarded. |
| 102 optional bool ephemeral_users_enabled = 1; | 103 optional bool ephemeral_users_enabled = 1; |
| 103 } | 104 } |
| 104 | 105 |
| 105 // Details of an extension to install as part of the AppPack. | 106 // Details of an extension to install as part of the AppPack. |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 optional SystemTimezoneProto system_timezone = 20; | 437 optional SystemTimezoneProto system_timezone = 20; |
| 437 optional DeviceLocalAccountsProto device_local_accounts = 21; | 438 optional DeviceLocalAccountsProto device_local_accounts = 21; |
| 438 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 439 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 439 optional StartUpFlagsProto start_up_flags = 23; | 440 optional StartUpFlagsProto start_up_flags = 23; |
| 440 optional UptimeLimitProto uptime_limit = 24; | 441 optional UptimeLimitProto uptime_limit = 24; |
| 441 optional VariationsParameterProto variations_parameter = 25; | 442 optional VariationsParameterProto variations_parameter = 25; |
| 442 optional AttestationSettingsProto attestation_settings = 26; | 443 optional AttestationSettingsProto attestation_settings = 26; |
| 443 optional AccessibilitySettingsProto accessibility_settings = 27; | 444 optional AccessibilitySettingsProto accessibility_settings = 27; |
| 444 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 445 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
| 445 } | 446 } |
| OLD | NEW |