Skip to content

Commit

Permalink
Core - Update CefErrorCode (113.0.5672.63)
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed May 6, 2023
1 parent 4699eb5 commit 0262884
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions CefSharp/Enums/CefErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,7 @@ public enum CefErrorCode
/// </summary>
SocketIsConnected = -23,

/// <summary>
/// The request was blocked because the forced reenrollment check is still
/// pending. This error can only occur on ChromeOS.
/// The error can be emitted by code in chrome/browser/policy/policy_helpers.cc.
/// </summary>
BlockedEnrollmentCheckPending = -24,
// Error -24 was removed (BLOCKED_ENROLLMENT_CHECK_PENDING)

/// <summary>
/// The upload failed because the upload stream needed to be re-read, due to a
Expand Down Expand Up @@ -1196,10 +1191,10 @@ public enum CefErrorCode
InconsistentIpAddressSpace = -383,

/// <summary>
/// The IP address space of the cached remote endpoint is blocked by private
/// The IP address space of the cached remote endpoint is blocked by local
/// network access check.
/// </summary>
CachedIpAddressSpaceBlockedByPrivateNetworkAccessPolicy = -384,
CachedIpAddressSpaceBlockedByLocalNetworkAccessPolicy = -384,

/// <summary>
/// The cache does not have the requested entry.
Expand Down Expand Up @@ -1512,6 +1507,6 @@ public enum CefErrorCode
/// The hostname resolution of HTTPS record was expected to be resolved with
/// alpn values of supported protocols, but did not.
/// </summary>
DnsNoMachingSupportedAlpn = -811,
DnsNoMatchingSupportedAlpn = -811,
};
}

0 comments on commit 0262884

Please sign in to comment.