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

Side by Side Diff: components/policy/proto/device_management_backend.proto

Issue 2728463004: Remove enterprise serial number recovery feature (Closed)
Patch Set: Remove enterprise serial number recovery feature Created 3 years, 9 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
« no previous file with comments | « components/policy/core/common/cloud/mock_cloud_policy_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 // on the client. This should be the last number the server had 216 // on the client. This should be the last number the server had
217 // supplied as new_public_key_version in PolicyData. 217 // supplied as new_public_key_version in PolicyData.
218 // This field is unspecified if the client does not yet have a 218 // This field is unspecified if the client does not yet have a
219 // public key. 219 // public key.
220 optional int32 public_key_version = 4; 220 optional int32 public_key_version = 4;
221 221
222 // Machine hardware id, such as serial number. 222 // Machine hardware id, such as serial number.
223 // This field is should be set only if the serial number for the device is 223 // This field is should be set only if the serial number for the device is
224 // missing from the server, as indicated by the valid_serial_number_missing 224 // missing from the server, as indicated by the valid_serial_number_missing
225 // field in the last policy fetch response. 225 // field in the last policy fetch response.
226 optional string machine_id = 5; 226 optional string machine_id = 5;
Thiemo Nagel 2017/05/02 10:53:06 I guess this one should be removed too?
pmarko 2017/05/17 16:00:21 Yes, I missed it :) thanks. Done.
227 227
228 // This field is used for devices to send the additional ID to fetch settings. 228 // This field is used for devices to send the additional ID to fetch settings.
229 // Retrieving some settings requires more than just device or user ID. 229 // Retrieving some settings requires more than just device or user ID.
230 // For example, to retrieve public account, devices need to pass in 230 // For example, to retrieve public account, devices need to pass in
231 // public account ID in addition to device ID. To retrieve extension or 231 // public account ID in addition to device ID. To retrieve extension or
232 // plug-in settings, devices need to pass in extension/plug-in ID in 232 // plug-in settings, devices need to pass in extension/plug-in ID in
233 // addition to user ID. 233 // addition to user ID.
234 // policy_type represents the type of settings (e.g. public account, 234 // policy_type represents the type of settings (e.g. public account,
235 // extension) devices request to fetch. 235 // extension) devices request to fetch.
236 optional string settings_entity_id = 6; 236 optional string settings_entity_id = 6;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 // Association is active and policy is pushed. 333 // Association is active and policy is pushed.
334 ACTIVE = 0; 334 ACTIVE = 0;
335 // Association is alive, but the corresponding domain is not managed. 335 // Association is alive, but the corresponding domain is not managed.
336 UNMANAGED = 1; 336 UNMANAGED = 1;
337 // The device has been deprovisioned by the administrator and is no longer 337 // The device has been deprovisioned by the administrator and is no longer
338 // managed. 338 // managed.
339 DEPROVISIONED = 2; 339 DEPROVISIONED = 2;
340 } 340 }
341 optional AssociationState state = 9 [default = ACTIVE]; 341 optional AssociationState state = 9 [default = ACTIVE];
342 342
343 // Indicates if the the server cannot find a valid serial number for the 343 // OBSELETE: Serial number recovery is no longer supported.
Thiemo Nagel 2017/05/02 10:53:06 We have changed our approach and now completely re
pmarko 2017/05/17 16:00:21 Done.
344 // device. If this flag is set, the device should send the valid serial 344 optional bool OBSOLETE_valid_serial_number_missing = 10;
345 // number with a device policy fetch request. Note that this only
346 // applies to device policy.
347 optional bool valid_serial_number_missing = 10;
348 345
349 // Indicates which public account or extension/plug-in this policy data is 346 // Indicates which public account or extension/plug-in this policy data is
350 // for. See PolicyFetchRequest.settings_entity_id for more details. 347 // for. See PolicyFetchRequest.settings_entity_id for more details.
351 optional string settings_entity_id = 11; 348 optional string settings_entity_id = 11;
352 349
353 // Indicates the identity the device service account is associated with. 350 // Indicates the identity the device service account is associated with.
354 // This is only sent as part of device policy fetch. 351 // This is only sent as part of device policy fetch.
355 optional string service_account_identity = 12; 352 optional string service_account_identity = 12;
356 353
357 // The object source which hosts policy objects within the invalidation 354 // The object source which hosts policy objects within the invalidation
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1474 check_android_management_response = 18; 1471 check_android_management_response = 18;
1475 1472
1476 // Response to an Active Directory Play user enrollment request. 1473 // Response to an Active Directory Play user enrollment request.
1477 optional ActiveDirectoryEnrollPlayUserResponse 1474 optional ActiveDirectoryEnrollPlayUserResponse
1478 active_directory_enroll_play_user_response = 19; 1475 active_directory_enroll_play_user_response = 19;
1479 1476
1480 // Response to a Play activity request. 1477 // Response to a Play activity request.
1481 optional ActiveDirectoryPlayActivityResponse 1478 optional ActiveDirectoryPlayActivityResponse
1482 active_directory_play_activity_response = 20; 1479 active_directory_play_activity_response = 20;
1483 } 1480 }
OLDNEW
« no previous file with comments | « components/policy/core/common/cloud/mock_cloud_policy_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698