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

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

Issue 2195653002: arc: add enterprise_reporting.mojom interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Corrected upstream branch. Created 4 years, 5 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 | « components/arc/common/arc_bridge.mojom ('k') | components/arc/user_data/arc_user_data_service.h » ('j') | 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
new file mode 100644
index 0000000000000000000000000000000000000000..ff1e23833aebf4b770ccb5fbe923d430822733c3
--- /dev/null
+++ b/components/arc/common/enterprise_reporting.mojom
@@ -0,0 +1,32 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+//
+// Next MinVersion: 1
+module arc.mojom;
+
+// Enumerates the states that management can be in for a user.
+[Extensible]
+enum ManagementState {
+ // The user is not managed.
+ UNMANAGED = 0,
+
+ // The user is managed and the management infrastructure is working correctly.
+ MANAGED_OK = 1,
+
+ // The user is managed but managing app lost its Device Owner status and
+ // cannot set policies.
+ MANAGED_DO_LOST = 2
+};
+
+// Next method ID: 1
+interface EnterpriseReportingHost {
+ // Reports the management status for the user.
+ ReportManagementState@0(ManagementState state);
+};
+
+// Next method ID: 1
+interface EnterpriseReportingInstance {
+ // Establishes full-duplex communication with the host.
+ Init@0(EnterpriseReportingHost host_ptr);
+};
« no previous file with comments | « components/arc/common/arc_bridge.mojom ('k') | components/arc/user_data/arc_user_data_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698