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

Side by Side Diff: components/arc/common/auth.mojom

Issue 1885683005: Add module suffix in .mojom files for components/arc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only Created 4 years, 8 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
« no previous file with comments | « components/arc/common/audio.mojom ('k') | components/arc/common/bluetooth.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 module arc; 5 module arc.mojom;
6 6
7 // These values describe failure reason of sign-in. 7 // These values describe failure reason of sign-in.
8 enum ArcSignInFailureReason { 8 enum ArcSignInFailureReason {
9 UNKNOWN_ERROR = 0, 9 UNKNOWN_ERROR = 0,
10 NETWORK_ERROR = 1, 10 NETWORK_ERROR = 1,
11 SERVICE_UNAVAILABLE = 2, 11 SERVICE_UNAVAILABLE = 2,
12 BAD_AUTHENTICATION = 3, 12 BAD_AUTHENTICATION = 3,
13 GMS_CORE_NOT_AVAILABLE = 4, 13 GMS_CORE_NOT_AVAILABLE = 4,
14 CLOUD_PROVISION_FLOW_FAIL = 5, 14 CLOUD_PROVISION_FLOW_FAIL = 5,
15 }; 15 };
(...skipping 10 matching lines...) Expand all
26 [MinVersion=2] OnSignInComplete@2(); 26 [MinVersion=2] OnSignInComplete@2();
27 // Notifies Chrome that the sign-in fails to complete and provides failure 27 // Notifies Chrome that the sign-in fails to complete and provides failure
28 // reason. 28 // reason.
29 [MinVersion=2] OnSignInFailed@3(ArcSignInFailureReason reason); 29 [MinVersion=2] OnSignInFailed@3(ArcSignInFailureReason reason);
30 }; 30 };
31 31
32 interface AuthInstance { 32 interface AuthInstance {
33 // Establishes full-duplex communication with the host. 33 // Establishes full-duplex communication with the host.
34 Init(AuthHost host_ptr); 34 Init(AuthHost host_ptr);
35 }; 35 };
OLDNEW
« no previous file with comments | « components/arc/common/audio.mojom ('k') | components/arc/common/bluetooth.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698