Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: chrome/browser/policy/proto/cloud/device_management_backend.proto

Issue 17109006: Device robot refresh token integrity validation. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: addressed atwilson's review comments Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 229
230 // Indicates if the the server cannot find a valid serial number for the 230 // Indicates if the the server cannot find a valid serial number for the
231 // device. If this flag is set, the device should send the valid serial 231 // device. If this flag is set, the device should send the valid serial
232 // number with a device policy fetch request. Note that this only 232 // number with a device policy fetch request. Note that this only
233 // applies to device policy. 233 // applies to device policy.
234 optional bool valid_serial_number_missing = 10; 234 optional bool valid_serial_number_missing = 10;
235 235
236 // Indicates which public account or extension/plug-in this policy data is 236 // Indicates which public account or extension/plug-in this policy data is
237 // for. See PolicyFetchRequest.settings_entity_id for more details. 237 // for. See PolicyFetchRequest.settings_entity_id for more details.
238 optional string settings_entity_id = 11; 238 optional string settings_entity_id = 11;
239
240 // Indicates the identity the device service account is associated with.
241 // This is only sent as part of device policy fetch.
242 optional string service_account_identity = 12;
239 } 243 }
240 244
241 message PolicyFetchResponse { 245 message PolicyFetchResponse {
242 // Since a single policy request may ask for multiple policies, we 246 // Since a single policy request may ask for multiple policies, we
243 // provide separate error code for each individual policy fetch. 247 // provide separate error code for each individual policy fetch.
244 248
245 // We will use standard HTTP Status Code as error code. 249 // We will use standard HTTP Status Code as error code.
246 optional int32 error_code = 1; 250 optional int32 error_code = 1;
247 251
248 // Human readable error message for customer support purpose. 252 // Human readable error message for customer support purpose.
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 560
557 // Auto-enrollment detection response. 561 // Auto-enrollment detection response.
558 optional DeviceAutoEnrollmentResponse auto_enrollment_response = 8; 562 optional DeviceAutoEnrollmentResponse auto_enrollment_response = 8;
559 563
560 // EMCert upload response. 564 // EMCert upload response.
561 optional DeviceCertUploadResponse cert_upload_response = 9; 565 optional DeviceCertUploadResponse cert_upload_response = 9;
562 566
563 // Response to OAuth2 authorization code request. 567 // Response to OAuth2 authorization code request.
564 optional DeviceServiceApiAccessResponse service_api_access_response = 10; 568 optional DeviceServiceApiAccessResponse service_api_access_response = 10;
565 } 569 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698