diff --git a/CefSharp/Enums/CefErrorCode.cs b/CefSharp/Enums/CefErrorCode.cs
index 57370cba1c..7f5405cf8e 100644
--- a/CefSharp/Enums/CefErrorCode.cs
+++ b/CefSharp/Enums/CefErrorCode.cs
@@ -201,6 +201,11 @@ public enum CefErrorCode
///
NetworkAccessRevoked = -33,
+ ///
+ /// The request was blocked by fingerprinting protections.
+ ///
+ BlockedByFingerprintingProtection = -34,
+
///
/// A connection was closed (corresponding to a TCP FIN).
///
@@ -789,11 +794,7 @@ public enum CefErrorCode
///
CertificateTransparencyRequired = -214,
- ///
- /// The certificate chained to a legacy Symantec root that is no longer trusted.
- /// https://g.co/chrome/symantecpkicerts
- ///
- CertSymantecLegacy = -215,
+ // Error -215 was removed (CERT_SYMANTEC_LEGACY)
// -216 was QUIC_CERT_ROOT_NOT_KNOWN which has been renumbered to not be in the
// certificate error range.
@@ -807,6 +808,12 @@ public enum CefErrorCode
// -218 was SSL_OBSOLETE_VERSION which is not longer used. TLS 1.0/1.1 instead
// cause SSL_VERSION_OR_CIPHER_MISMATCH now.
+ ///
+ /// The certificate is self signed and it's being used for either an RFC1918 IP
+ /// literal URL, or a url ending in .local.
+ ///
+ CertSelfSignedLocalNetwork = -219,
+
// Add new certificate error codes here.
//
// Update the value of CERT_END whenever you add a new certificate error
@@ -815,7 +822,7 @@ public enum CefErrorCode
///
/// The value immediately past the last certificate error code.
///
- CertEnd = -219,
+ CertEnd = -220,
///
/// The URL is invalid.
@@ -1104,6 +1111,11 @@ public enum CefErrorCode
///
PacScriptTerminated = -367,
+ ///
+ /// Signals that the request requires the IPP proxy.
+ ///
+ ProxyRequired = -368,
+
// Obsolete. Kept here to avoid reuse.
// Request is throttled because of a Backoff header.
// See: crbug.com/486891.
@@ -1208,9 +1220,7 @@ public enum CefErrorCode
DictionaryLoadFailed = -387,
///
- /// The "content-dictionary" response header is unexpected. This is used both
- /// when there is no "content-dictionary" response header and when the received
- /// "content-dictionary" response header does not match the expected value.
+ /// The header of dictionary compressed stream does not match the expected value.
///
UnexpectedContentDictionaryHeader = -388,