@@ -1121,16 +1121,11 @@ public enum CefErrorCode
1121
1121
/// </summary>
1122
1122
Http2RstStreamNoErrorReceived = - 372 ,
1123
1123
1124
- /// <summary>
1125
- /// The pushed stream claimed by the request is no longer available.
1126
- /// </summary>
1127
- Http2PushedStreamNotAvailable = - 373 ,
1124
+ // Obsolete. HTTP/2 push is removed.
1125
+ // NET_ERROR(HTTP2_PUSHED_STREAM_NOT_AVAILABLE, -373)
1128
1126
1129
- /// <summary>
1130
- /// A pushed stream was claimed and later reset by the server. When this happens,
1131
- /// the request should be retried.
1132
- /// </summary>
1133
- Http2ClaimedPushedStreamResetByServer = - 374 ,
1127
+ // Obsolete. HTTP/2 push is removed.
1128
+ // NET_ERROR(HTTP2_CLAIMED_PUSHED_STREAM_RESET_BY_SERVER, -374)
1134
1129
1135
1130
/// <summary>
1136
1131
/// An HTTP transaction was retried too many times due for authentication or
@@ -1145,21 +1140,16 @@ public enum CefErrorCode
1145
1140
/// </summary>
1146
1141
Http2StreamClosed = - 376 ,
1147
1142
1148
- /// <summary>
1149
- /// Client is refusing an HTTP/2 stream.
1150
- /// </summary>
1151
- Http2ClientRefusedStream = - 377 ,
1143
+ // Obsolete. HTTP/2 push is removed.
1144
+ // NET_ERROR(HTTP2_CLIENT_REFUSED_STREAM, -377)
1152
1145
1153
- /// <summary>
1154
- /// A pushed HTTP/2 stream was claimed by a request based on matching URL and
1155
- /// request headers, but the pushed response headers do not match the request.
1156
- /// </summary>
1157
- Http2PushedResponseDoesNotMatch = - 378 ,
1146
+ // Obsolete. HTTP/2 push is removed.
1147
+ // NET_ERROR(HTTP2_PUSHED_RESPONSE_DOES_NOT_MATCH, -378)
1158
1148
1159
1149
/// <summary>
1160
1150
/// The server returned a non-2xx HTTP response code.
1161
1151
///
1162
- /// Not that this error is only used by certain APIs that interpret the HTTP
1152
+ /// Note that this error is only used by certain APIs that interpret the HTTP
1163
1153
/// response itself. URLRequest for instance just passes most non-2xx
1164
1154
/// response back as success.
1165
1155
/// </summary>
@@ -1191,7 +1181,7 @@ public enum CefErrorCode
1191
1181
InconsistentIpAddressSpace = - 383 ,
1192
1182
1193
1183
/// <summary>
1194
- /// The IP address space of the cached remote endpoint is blocked by local
1184
+ /// The IP address space of the cached remote endpoint is blocked by private
1195
1185
/// network access check.
1196
1186
/// </summary>
1197
1187
CachedIpAddressSpaceBlockedByLocalNetworkAccessPolicy = - 384 ,
@@ -1436,6 +1426,11 @@ public enum CefErrorCode
1436
1426
1437
1427
// Error -715 was removed (CHANNEL_ID_IMPORT_FAILED)
1438
1428
1429
+ /// <summary>
1430
+ /// The certificate verifier configuration changed in some way.
1431
+ /// </summary>
1432
+ CertVerifierChanged = - 716 ,
1433
+
1439
1434
// DNS error codes.
1440
1435
1441
1436
/// <summary>
@@ -1508,5 +1503,10 @@ public enum CefErrorCode
1508
1503
/// alpn values of supported protocols, but did not.
1509
1504
/// </summary>
1510
1505
DnsNoMatchingSupportedAlpn = - 811 ,
1506
+
1507
+ /// <summary>
1508
+ /// The compression dictionary cannot be loaded.
1509
+ /// </summary>
1510
+ DictionaryLoadFailed = - 812 ,
1511
1511
} ;
1512
1512
}
0 commit comments