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

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

Issue 2723263003: arc: Provide more logging for network failures. (Closed)
Patch Set: forgot to clean arc_auth_service.cc Created 3 years, 10 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
Index: components/arc/common/auth.mojom
diff --git a/components/arc/common/auth.mojom b/components/arc/common/auth.mojom
index 0df2fa9c0480c40e6a6e82cf749c4a69568c2ea1..c0617259ee98425fbc9df79903c4b6c997e50f35 100644
--- a/components/arc/common/auth.mojom
+++ b/components/arc/common/auth.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: 8
+// Next MinVersion: 9
module arc.mojom;
@@ -12,7 +12,7 @@ enum ArcSignInFailureReason {
// Negative values are reserved for internal use.
// The values are shuffled to keep the backward compatibility and don't match
// ProvisioningResult in arc_optin_uma.h
- // Next value: 15.
+ // Next value: 16.
UNKNOWN_ERROR = 0,
// Mojo errors:
@@ -61,6 +61,9 @@ enum ArcSignInFailureReason {
CLOUD_PROVISION_FLOW_FAILED = 5,
CLOUD_PROVISION_FLOW_TIMEOUT = 13,
CLOUD_PROVISION_FLOW_INTERNAL_ERROR = 14,
+
+ // Network connection is unavailable.
+ [MinVersion=8] NO_NETWORK_CONNECTION = 15,
};
// These values describe the type of the Chrome account to provision.

Powered by Google App Engine
This is Rietveld 408576698