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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 message PolicyFetchRequest { | 177 message PolicyFetchRequest { |
178 // This is the policy type, which maps to D3 policy type internally. | 178 // This is the policy type, which maps to D3 policy type internally. |
179 // By convention, we use "/" as separator to create policy namespace. | 179 // By convention, we use "/" as separator to create policy namespace. |
180 // The policy type names are case insensitive. | 180 // The policy type names are case insensitive. |
181 // | 181 // |
182 // Possible values for Chrome OS are: | 182 // Possible values for Chrome OS are: |
183 // google/chromeos/device => ChromeDeviceSettingsProto | 183 // google/chromeos/device => ChromeDeviceSettingsProto |
184 // google/chromeos/user => ChromeSettingsProto | 184 // google/chromeos/user => ChromeSettingsProto |
185 // google/chromeos/publicaccount => ChromeSettingsProto | 185 // google/chromeos/publicaccount => ChromeSettingsProto |
186 // google/chrome/extension => ExternalPolicyData | 186 // google/chrome/extension => ExternalPolicyData |
| 187 // google/chromeos/signinextension => ExternalPolicyData |
187 // google/android/user => ChromeSettingsProto | 188 // google/android/user => ChromeSettingsProto |
188 // google/ios/user => ChromeSettingsProto | 189 // google/ios/user => ChromeSettingsProto |
189 optional string policy_type = 1; | 190 optional string policy_type = 1; |
190 | 191 |
191 // This is the last policy timestamp that client received from server. | 192 // This is the last policy timestamp that client received from server. |
192 optional int64 timestamp = 2; | 193 optional int64 timestamp = 2; |
193 | 194 |
194 // Tell server what kind of security signature is required. | 195 // Tell server what kind of security signature is required. |
195 enum SignatureType { | 196 enum SignatureType { |
196 NONE = 0; | 197 NONE = 0; |
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1406 // Response to update device attribute. | 1407 // Response to update device attribute. |
1407 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16; | 1408 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16; |
1408 | 1409 |
1409 // Response to GCM id update request. | 1410 // Response to GCM id update request. |
1410 optional GcmIdUpdateResponse gcm_id_update_response = 17; | 1411 optional GcmIdUpdateResponse gcm_id_update_response = 17; |
1411 | 1412 |
1412 // Response to check Android management request. | 1413 // Response to check Android management request. |
1413 optional CheckAndroidManagementResponse | 1414 optional CheckAndroidManagementResponse |
1414 check_android_management_response = 18; | 1415 check_android_management_response = 18; |
1415 } | 1416 } |
OLD | NEW |