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

Unified Diff: net/base/net_error_list.h

Issue 8662036: Support EC certs in OriginBoundCertService and OriginBoundCertStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forgot to add new file Created 9 years 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: net/base/net_error_list.h
diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h
index 430d7ae0b58d9cb220d9f2fb809ebda64d6c6602..bf07ef25234abdb6099f7806b56f231baf8b6d70 100644
--- a/net/base/net_error_list.h
+++ b/net/base/net_error_list.h
@@ -514,6 +514,13 @@ NET_ERROR(SPDY_PING_FAILED, -352)
// Content-Length does not match the number of bytes received.
NET_ERROR(CONTENT_LENGTH_MISMATCH, -353)
+// Server request for Origin Bound Cert did not contain any types we support.
+NET_ERROR(ORIGIN_BOUND_CERT_TYPE_UNSUPPORTED, -354)
wtc 2011/12/06 00:18:05 This error code does not need to be specific to or
mattm 2011/12/06 00:54:01 Done.
+
+// Server requested one type of cert, then requested a different type while the
+// first was still being generated.
+NET_ERROR(ORIGIN_BOUND_CERT_GENERATION_TYPE_MISMATCH, -355)
wtc 2011/12/06 00:18:05 The 300-399 range is the HTTP errors. Since these
mattm 2011/12/06 00:54:01 oops. Moved to the 1xx range since that seemed ap
+
// The cache does not have the requested entry.
NET_ERROR(CACHE_MISS, -400)

Powered by Google App Engine
This is Rietveld 408576698