| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 } | 90 } |
| 91 | 91 |
| 92 // Policies to turn on portions of the device status reports. | 92 // Policies to turn on portions of the device status reports. |
| 93 message DeviceReportingProto { | 93 message DeviceReportingProto { |
| 94 optional bool report_version_info = 1; | 94 optional bool report_version_info = 1; |
| 95 optional bool report_activity_times = 2; | 95 optional bool report_activity_times = 2; |
| 96 optional bool report_boot_mode = 3; | 96 optional bool report_boot_mode = 3; |
| 97 optional bool report_location = 4; | 97 optional bool report_location = 4; |
| 98 optional bool report_network_interfaces = 5; | 98 optional bool report_network_interfaces = 5; |
| 99 optional bool report_users = 6; | 99 optional bool report_users = 6; |
| 100 optional bool report_hardware_status = 7; |
| 100 } | 101 } |
| 101 | 102 |
| 102 message EphemeralUsersEnabledProto { | 103 message EphemeralUsersEnabledProto { |
| 103 // Determines whether users should be treated as ephemeral. In ephemeral users | 104 // Determines whether users should be treated as ephemeral. In ephemeral users |
| 104 // mode, no cryptohome is created for the user, but a tmpfs mount is used | 105 // mode, no cryptohome is created for the user, but a tmpfs mount is used |
| 105 // instead such that upon logout all user state is discarded. | 106 // instead such that upon logout all user state is discarded. |
| 106 optional bool ephemeral_users_enabled = 1; | 107 optional bool ephemeral_users_enabled = 1; |
| 107 } | 108 } |
| 108 | 109 |
| 109 // Details of an extension to install as part of the AppPack. | 110 // Details of an extension to install as part of the AppPack. |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 optional VariationsParameterProto variations_parameter = 25; | 612 optional VariationsParameterProto variations_parameter = 25; |
| 612 optional AttestationSettingsProto attestation_settings = 26; | 613 optional AttestationSettingsProto attestation_settings = 26; |
| 613 optional AccessibilitySettingsProto accessibility_settings = 27; | 614 optional AccessibilitySettingsProto accessibility_settings = 27; |
| 614 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 615 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
| 615 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 616 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
| 616 optional SystemUse24HourClockProto use_24hour_clock = 30; | 617 optional SystemUse24HourClockProto use_24hour_clock = 30; |
| 617 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 618 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
| 618 optional SystemSettingsProto system_settings = 32; | 619 optional SystemSettingsProto system_settings = 32; |
| 619 optional SAMLSettingsProto saml_settings = 33; | 620 optional SAMLSettingsProto saml_settings = 33; |
| 620 } | 621 } |
| OLD | NEW |