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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
71 optional bool camera_enabled = 1; | 71 optional bool camera_enabled = 1; |
72 } | 72 } |
73 | 73 |
74 message MetricsEnabledProto { | 74 message MetricsEnabledProto { |
75 optional bool metrics_enabled = 1; | 75 optional bool metrics_enabled = 1; |
76 } | 76 } |
77 | 77 |
78 message ReleaseChannelProto { | 78 message ReleaseChannelProto { |
79 // One of "stable-channel", "beta-channel", or "dev-channel" | 79 // One of "stable-channel", "beta-channel", or "dev-channel" |
80 optional string release_channel = 1; | 80 optional string release_channel = 1; |
81 // If |user_delegated| is set to true, the user can select the channel. | |
Joao da Silva
2012/03/09 15:15:55
Nit: newline before the comment
pastarmovj
2012/03/12 13:06:53
Done.
| |
82 optional bool release_channel_delegated = 2; | |
81 } | 83 } |
82 | 84 |
83 message DeviceOpenNetworkConfigurationProto { | 85 message DeviceOpenNetworkConfigurationProto { |
84 // 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. |
85 optional string open_network_configuration = 1; | 87 optional string open_network_configuration = 1; |
86 } | 88 } |
87 | 89 |
88 // Policies to turn on portions of the device status reports. | 90 // Policies to turn on portions of the device status reports. |
89 message DeviceReportingProto { | 91 message DeviceReportingProto { |
90 optional bool report_version_info = 1; | 92 optional bool report_version_info = 1; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
145 optional AllowNewUsersProto allow_new_users = 8; | 147 optional AllowNewUsersProto allow_new_users = 8; |
146 optional MetricsEnabledProto metrics_enabled = 9; | 148 optional MetricsEnabledProto metrics_enabled = 9; |
147 optional ReleaseChannelProto release_channel = 10; | 149 optional ReleaseChannelProto release_channel = 10; |
148 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 150 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
149 optional DeviceReportingProto device_reporting = 12; | 151 optional DeviceReportingProto device_reporting = 12; |
150 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 152 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
151 optional AppPackProto app_pack = 14; | 153 optional AppPackProto app_pack = 14; |
152 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 154 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
153 optional ScreenSaverProto login_screen_saver = 16; | 155 optional ScreenSaverProto login_screen_saver = 16; |
154 } | 156 } |
OLD | NEW |