| 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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 repeated TimePeriod active_time = 4 [deprecated = true]; | 661 repeated TimePeriod active_time = 4 [deprecated = true]; |
| 662 | 662 |
| 663 // The browser version string as shown in the About dialog. | 663 // The browser version string as shown in the About dialog. |
| 664 // e.g. 17.0.963.18. | 664 // e.g. 17.0.963.18. |
| 665 optional string browser_version = 5; | 665 optional string browser_version = 5; |
| 666 | 666 |
| 667 // A list of periods when the device was active, aggregated by day. | 667 // A list of periods when the device was active, aggregated by day. |
| 668 repeated ActiveTimePeriod active_period = 6; | 668 repeated ActiveTimePeriod active_period = 6; |
| 669 | 669 |
| 670 // The device location. | 670 // The device location. |
| 671 optional DeviceLocation device_location = 7; | 671 optional DeviceLocation deprecated_device_location = 7 [deprecated = true]; |
| 672 | 672 |
| 673 // List of network interfaces. | 673 // List of network interfaces. |
| 674 repeated NetworkInterface network_interface = 8; | 674 repeated NetworkInterface network_interface = 8; |
| 675 | 675 |
| 676 // List of recent device users, in descending order by last login time. | 676 // List of recent device users, in descending order by last login time. |
| 677 repeated DeviceUser user = 9; | 677 repeated DeviceUser user = 9; |
| 678 | 678 |
| 679 // Disk space + other info about mounted/connected volumes. | 679 // Disk space + other info about mounted/connected volumes. |
| 680 repeated VolumeInfo volume_info = 10; | 680 repeated VolumeInfo volume_info = 10; |
| 681 | 681 |
| (...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1310 // Response to update device attribute. | 1310 // Response to update device attribute. |
| 1311 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16; | 1311 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16; |
| 1312 | 1312 |
| 1313 // Response to GCM id update request. | 1313 // Response to GCM id update request. |
| 1314 optional GcmIdUpdateResponse gcm_id_update_response = 17; | 1314 optional GcmIdUpdateResponse gcm_id_update_response = 17; |
| 1315 | 1315 |
| 1316 // Response to check Android management request. | 1316 // Response to check Android management request. |
| 1317 optional CheckAndroidManagementResponse | 1317 optional CheckAndroidManagementResponse |
| 1318 check_android_management_response = 18; | 1318 check_android_management_response = 18; |
| 1319 } | 1319 } |
| OLD | NEW |