| 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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 repeated TimePeriod active_time = 4 [deprecated = true]; | 726 repeated TimePeriod active_time = 4 [deprecated = true]; |
| 727 | 727 |
| 728 // The browser version string as shown in the About dialog. | 728 // The browser version string as shown in the About dialog. |
| 729 // e.g. 17.0.963.18. | 729 // e.g. 17.0.963.18. |
| 730 optional string browser_version = 5; | 730 optional string browser_version = 5; |
| 731 | 731 |
| 732 // A list of periods when the device was active, aggregated by day. | 732 // A list of periods when the device was active, aggregated by day. |
| 733 repeated ActiveTimePeriod active_period = 6; | 733 repeated ActiveTimePeriod active_period = 6; |
| 734 | 734 |
| 735 // The device location. | 735 // The device location. |
| 736 optional DeviceLocation device_location = 7; | 736 optional DeviceLocation deprecated_device_location = 7 [deprecated = true]; |
| 737 | 737 |
| 738 // List of network interfaces. | 738 // List of network interfaces. |
| 739 repeated NetworkInterface network_interface = 8; | 739 repeated NetworkInterface network_interface = 8; |
| 740 | 740 |
| 741 // List of recent device users, in descending order by last login time. | 741 // List of recent device users, in descending order by last login time. |
| 742 repeated DeviceUser user = 9; | 742 repeated DeviceUser user = 9; |
| 743 | 743 |
| 744 // Disk space + other info about mounted/connected volumes. | 744 // Disk space + other info about mounted/connected volumes. |
| 745 repeated VolumeInfo volume_info = 10; | 745 repeated VolumeInfo volume_info = 10; |
| 746 | 746 |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1305 // Response to update device attribute. | 1305 // Response to update device attribute. |
| 1306 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16; | 1306 optional DeviceAttributeUpdateResponse device_attribute_update_response = 16; |
| 1307 | 1307 |
| 1308 // Response to GCM id update request. | 1308 // Response to GCM id update request. |
| 1309 optional GcmIdUpdateResponse gcm_id_update_response = 17; | 1309 optional GcmIdUpdateResponse gcm_id_update_response = 17; |
| 1310 | 1310 |
| 1311 // Response to check Android management request. | 1311 // Response to check Android management request. |
| 1312 optional CheckAndroidManagementResponse | 1312 optional CheckAndroidManagementResponse |
| 1313 check_android_management_response = 18; | 1313 check_android_management_response = 18; |
| 1314 } | 1314 } |
| OLD | NEW |