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

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

Issue 2886403004: PolicyData proto: Obsolete "consumer" ManagementMode (Closed)
Patch Set: Created 3 years, 7 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 | « chrome/browser/chromeos/ownership/owner_settings_service_chromeos.cc ('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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 // have this field. If this field is not set but request_token is set, assume 374 // have this field. If this field is not set but request_token is set, assume
375 // the management mode is ENTERPRISE_MANAGED. If both this field and 375 // the management mode is ENTERPRISE_MANAGED. If both this field and
376 // request_token are not set, assume the management mode is LOCAL_OWNER. 376 // request_token are not set, assume the management mode is LOCAL_OWNER.
377 enum ManagementMode { 377 enum ManagementMode {
378 // The device is owned locally. The policies are set by the local owner of 378 // The device is owned locally. The policies are set by the local owner of
379 // the device. 379 // the device.
380 LOCAL_OWNER = 0; 380 LOCAL_OWNER = 0;
381 // The device is enterprise-managed. The policies come from the enterprise 381 // The device is enterprise-managed. The policies come from the enterprise
382 // server. See the comment above for backward compatibility. 382 // server. See the comment above for backward compatibility.
383 ENTERPRISE_MANAGED = 1; 383 ENTERPRISE_MANAGED = 1;
384 // The device is consumer-managed. The policies currently can only be set 384 // Obsolete. Don't use.
385 // by the local owner of the device. 385 OBSOLETE_CONSUMER_MANAGED = 2;
386 CONSUMER_MANAGED = 2;
387 } 386 }
388 optional ManagementMode management_mode = 16; 387 optional ManagementMode management_mode = 16;
389 388
390 // Indicates the state that the device should be in. 389 // Indicates the state that the device should be in.
391 optional DeviceState device_state = 17; 390 optional DeviceState device_state = 17;
392 391
393 // The object source which hosts command queue objects within the 392 // The object source which hosts command queue objects within the
394 // invalidation service. This value is combined with 393 // invalidation service. This value is combined with
395 // command_invalidation_name to form the object ID used to 394 // command_invalidation_name to form the object ID used to
396 // register for invalidations to the command queue. 395 // register for invalidations to the command queue.
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 check_android_management_response = 18; 1412 check_android_management_response = 18;
1414 1413
1415 // Response to an Active Directory Play user enrollment request. 1414 // Response to an Active Directory Play user enrollment request.
1416 optional ActiveDirectoryEnrollPlayUserResponse 1415 optional ActiveDirectoryEnrollPlayUserResponse
1417 active_directory_enroll_play_user_response = 19; 1416 active_directory_enroll_play_user_response = 19;
1418 1417
1419 // Response to a Play activity request. 1418 // Response to a Play activity request.
1420 optional ActiveDirectoryPlayActivityResponse 1419 optional ActiveDirectoryPlayActivityResponse
1421 active_directory_play_activity_response = 20; 1420 active_directory_play_activity_response = 20;
1422 } 1421 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/ownership/owner_settings_service_chromeos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698