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

Unified Diff: components/arc/common/enterprise_reporting.mojom

Issue 2312873002: Change Chrome OS status reporting interface to ARC++ (Closed)
Patch Set: CamelCase -> snake_case 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/common/enterprise_reporting.mojom
diff --git a/components/arc/common/enterprise_reporting.mojom b/components/arc/common/enterprise_reporting.mojom
index ff1e23833aebf4b770ccb5fbe923d430822733c3..0ad1ffab2a5cc1a7ecc9910f6c64d23f058ebec5 100644
--- a/components/arc/common/enterprise_reporting.mojom
+++ b/components/arc/common/enterprise_reporting.mojom
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
-// Next MinVersion: 1
+// Next MinVersion: 2
module arc.mojom;
// Enumerates the states that management can be in for a user.
@@ -25,8 +25,12 @@ interface EnterpriseReportingHost {
ReportManagementState@0(ManagementState state);
};
-// Next method ID: 1
+// Next method ID: 2
interface EnterpriseReportingInstance {
// Establishes full-duplex communication with the host.
Init@0(EnterpriseReportingHost host_ptr);
+
+ // Requests that a JSON status blob be generated and passed to the
+ // host.
+ [MinVersion=1] GetStatus@1() => (string status, string droid_guard_info);
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698