@@ -201,6 +201,11 @@ public enum CefErrorCode
201
201
/// </summary>
202
202
NetworkAccessRevoked = - 33 ,
203
203
204
+ /// <summary>
205
+ /// The request was blocked by fingerprinting protections.
206
+ /// </summary>
207
+ BlockedByFingerprintingProtection = - 34 ,
208
+
204
209
/// <summary>
205
210
/// A connection was closed (corresponding to a TCP FIN).
206
211
/// </summary>
@@ -789,11 +794,7 @@ public enum CefErrorCode
789
794
/// </summary>
790
795
CertificateTransparencyRequired = - 214 ,
791
796
792
- /// <summary>
793
- /// The certificate chained to a legacy Symantec root that is no longer trusted.
794
- /// https://g.co/chrome/symantecpkicerts
795
- /// </summary>
796
- CertSymantecLegacy = - 215 ,
797
+ // Error -215 was removed (CERT_SYMANTEC_LEGACY)
797
798
798
799
// -216 was QUIC_CERT_ROOT_NOT_KNOWN which has been renumbered to not be in the
799
800
// certificate error range.
@@ -807,6 +808,12 @@ public enum CefErrorCode
807
808
// -218 was SSL_OBSOLETE_VERSION which is not longer used. TLS 1.0/1.1 instead
808
809
// cause SSL_VERSION_OR_CIPHER_MISMATCH now.
809
810
811
+ /// <summary>
812
+ /// The certificate is self signed and it's being used for either an RFC1918 IP
813
+ /// literal URL, or a url ending in .local.
814
+ /// </summary>
815
+ CertSelfSignedLocalNetwork = - 219 ,
816
+
810
817
// Add new certificate error codes here.
811
818
//
812
819
// Update the value of CERT_END whenever you add a new certificate error
@@ -815,7 +822,7 @@ public enum CefErrorCode
815
822
/// <summary>
816
823
/// The value immediately past the last certificate error code.
817
824
/// </summary>
818
- CertEnd = - 219 ,
825
+ CertEnd = - 220 ,
819
826
820
827
/// <summary>
821
828
/// The URL is invalid.
@@ -1104,6 +1111,11 @@ public enum CefErrorCode
1104
1111
/// </summary>
1105
1112
PacScriptTerminated = - 367 ,
1106
1113
1114
+ /// <summary>
1115
+ /// Signals that the request requires the IPP proxy.
1116
+ /// </summary>
1117
+ ProxyRequired = - 368 ,
1118
+
1107
1119
// Obsolete. Kept here to avoid reuse.
1108
1120
// Request is throttled because of a Backoff header.
1109
1121
// See: crbug.com/486891.
@@ -1208,9 +1220,7 @@ public enum CefErrorCode
1208
1220
DictionaryLoadFailed = - 387 ,
1209
1221
1210
1222
/// <summary>
1211
- /// The "content-dictionary" response header is unexpected. This is used both
1212
- /// when there is no "content-dictionary" response header and when the received
1213
- /// "content-dictionary" response header does not match the expected value.
1223
+ /// The header of dictionary compressed stream does not match the expected value.
1214
1224
/// </summary>
1215
1225
UnexpectedContentDictionaryHeader = - 388 ,
1216
1226
0 commit comments