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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 optional string open_network_configuration = 1; | 85 optional string open_network_configuration = 1; |
86 } | 86 } |
87 | 87 |
88 // Policies to turn on portions of the device status reports. | 88 // Policies to turn on portions of the device status reports. |
89 message DeviceReportingProto { | 89 message DeviceReportingProto { |
90 optional bool report_version_info = 1; | 90 optional bool report_version_info = 1; |
91 optional bool report_activity_times = 2; | 91 optional bool report_activity_times = 2; |
92 optional bool report_boot_mode = 3; | 92 optional bool report_boot_mode = 3; |
93 } | 93 } |
94 | 94 |
| 95 message EphemeralUsersProto { |
| 96 // Determines whether users should be treated as ephemeral. |
| 97 optional bool ephemeral_users = 1; |
| 98 } |
| 99 |
95 message ChromeDeviceSettingsProto { | 100 message ChromeDeviceSettingsProto { |
96 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 101 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
97 optional UserWhitelistProto user_whitelist = 2; | 102 optional UserWhitelistProto user_whitelist = 2; |
98 optional GuestModeEnabledProto guest_mode_enabled = 3; | 103 optional GuestModeEnabledProto guest_mode_enabled = 3; |
99 optional DeviceProxySettingsProto device_proxy_settings = 4; | 104 optional DeviceProxySettingsProto device_proxy_settings = 4; |
100 optional CameraEnabledProto camera_enabled = 5; | 105 optional CameraEnabledProto camera_enabled = 5; |
101 optional ShowUserNamesOnSigninProto show_user_names = 6; | 106 optional ShowUserNamesOnSigninProto show_user_names = 6; |
102 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 107 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
103 optional AllowNewUsersProto allow_new_users = 8; | 108 optional AllowNewUsersProto allow_new_users = 8; |
104 optional MetricsEnabledProto metrics_enabled = 9; | 109 optional MetricsEnabledProto metrics_enabled = 9; |
105 optional ReleaseChannelProto release_channel = 10; | 110 optional ReleaseChannelProto release_channel = 10; |
106 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 111 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
107 optional DeviceReportingProto device_reporting = 12; | 112 optional DeviceReportingProto device_reporting = 12; |
| 113 optional EphemeralUsersProto ephemeral_users = 13; |
108 } | 114 } |
OLD | NEW |