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

Unified Diff: components/policy/proto/device_management_backend.proto

Issue 2383763002: Report ARC status asynchronously via DeviceStatusCollector (Closed)
Patch Set: Nits addressed Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/policy/status_uploader_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/policy/proto/device_management_backend.proto
diff --git a/components/policy/proto/device_management_backend.proto b/components/policy/proto/device_management_backend.proto
index 2e17eed1839ed0cee189ad3a90636201e30e896d..5793c275cb78615cf62359bb8aededeccdc57984 100644
--- a/components/policy/proto/device_management_backend.proto
+++ b/components/policy/proto/device_management_backend.proto
@@ -747,6 +747,13 @@ message AppStatus {
optional string required_platform_version = 5;
}
+message AndroidStatus {
+ // JSON string of ARC status report.
+ optional string status_payload = 1;
+ // DroidGuard response obtained from DroidGuard server.
+ optional string droid_guard_info = 2;
+}
+
// Report current active session (a user on one device) level status.
message SessionStatusReportRequest {
// Installed apps for this user on this device.
@@ -768,6 +775,9 @@ message SessionStatusReportRequest {
// Information about installed extensions for this user on this device.
repeated AppStatus installed_extensions = 6;
+
+ // Information about ARC status.
+ optional AndroidStatus android_status = 7;
}
// Response from DMServer to update devices' status.
« no previous file with comments | « chrome/browser/chromeos/policy/status_uploader_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698