| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 11 matching lines...) Expand all Loading... |
| 22 optional bool unmanaged = 3; | 22 optional bool unmanaged = 3; |
| 23 // The PolicyFetchResponse wrapped by this message. | 23 // The PolicyFetchResponse wrapped by this message. |
| 24 optional PolicyFetchResponse cloud_policy = 4; | 24 optional PolicyFetchResponse cloud_policy = 4; |
| 25 } | 25 } |
| 26 | 26 |
| 27 // Encapsulates a device ID and the associated device token. | 27 // Encapsulates a device ID and the associated device token. |
| 28 message DeviceCredentials { | 28 message DeviceCredentials { |
| 29 optional string device_id = 1; | 29 optional string device_id = 1; |
| 30 optional string device_token = 2; | 30 optional string device_token = 2; |
| 31 } | 31 } |
| OLD | NEW |