| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |