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

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

Issue 2314813002: Refactored DeviceStatusCollector to enable truely asynchronous status queries (Closed)
Patch Set: Rebase Created 4 years, 3 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
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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698