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

Side by Side 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, 4 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // Next MinVersion: 1
6 module arc.mojom;
7
8 // Enumerates the states that management can be in for a user.
9 [Extensible]
10 enum ManagementState {
11 // The user is not managed.
12 UNMANAGED = 0,
13
14 // The user is managed and the management infrastructure is working correctly.
15 MANAGED_OK = 1,
16
17 // The user is managed but managing app lost its Device Owner status and
18 // cannot set policies.
19 MANAGED_DO_LOST = 2
20 };
21
22 // Next method ID: 1
23 interface EnterpriseReportingHost {
24 // Reports the management status for the user.
25 ReportManagementState@0(ManagementState state);
26 };
27
28 // Next method ID: 1
29 interface EnterpriseReportingInstance {
30 // Establishes full-duplex communication with the host.
31 Init@0(EnterpriseReportingHost host_ptr);
32 };
OLDNEW
« 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