Skip to content

Commit 8ff2de3

Browse files
S1artiemagreenblatt
authored andcommitted
Update to CEF version 119.4.3+gc76a3b9+chromium-119.0.6045.159
1 parent 37f25dc commit 8ff2de3

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ set_property(GLOBAL PROPERTY OS_FOLDERS ON)
130130

131131
# Specify the CEF distribution version.
132132
if(NOT DEFINED CEF_VERSION)
133-
set(CEF_VERSION "116.0.19+gc6a20bc+chromium-116.0.5845.141")
133+
set(CEF_VERSION "119.4.3+gc76a3b9+chromium-119.0.6045.159")
134134
endif()
135135

136136
# Determine the platform.

java/org/cef/handler/CefLoadHandler.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,8 @@ enum ErrorCode {
187187
ERR_INVALID_HTTP_RESPONSE(-370),
188188
ERR_CONTENT_DECODING_INIT_FAILED(-371),
189189
ERR_HTTP2_RST_STREAM_NO_ERROR_RECEIVED(-372),
190-
ERR_HTTP2_PUSHED_STREAM_NOT_AVAILABLE(-373),
191-
ERR_HTTP2_CLAIMED_PUSHED_STREAM_RESET_BY_SERVER(-374),
192190
ERR_TOO_MANY_RETRIES(-375),
193191
ERR_HTTP2_STREAM_CLOSED(-376),
194-
ERR_HTTP2_CLIENT_REFUSED_STREAM(-377),
195-
ERR_HTTP2_PUSHED_RESPONSE_DOES_NOT_MATCH(-378),
196192
ERR_HTTP_RESPONSE_CODE_FAILURE(-379),
197193
ERR_QUIC_CERT_ROOT_NOT_KNOWN(-380),
198194
ERR_QUIC_GOAWAY_REQUEST_CAN_BE_RETRIED(-381),

native/jni_util.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -633,18 +633,10 @@ jobject NewJNIErrorCode(JNIEnv* env, cef_errorcode_t errorCode) {
633633
ERR_CONTENT_DECODING_INIT_FAILED, jerrorCode);
634634
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
635635
ERR_HTTP2_RST_STREAM_NO_ERROR_RECEIVED, jerrorCode);
636-
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
637-
ERR_HTTP2_PUSHED_STREAM_NOT_AVAILABLE, jerrorCode);
638-
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
639-
ERR_HTTP2_CLAIMED_PUSHED_STREAM_RESET_BY_SERVER, jerrorCode);
640636
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
641637
ERR_TOO_MANY_RETRIES, jerrorCode);
642638
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
643639
ERR_HTTP2_STREAM_CLOSED, jerrorCode);
644-
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
645-
ERR_HTTP2_CLIENT_REFUSED_STREAM, jerrorCode);
646-
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
647-
ERR_HTTP2_PUSHED_RESPONSE_DOES_NOT_MATCH, jerrorCode);
648640
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
649641
ERR_HTTP_RESPONSE_CODE_FAILURE, jerrorCode);
650642
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",

0 commit comments

Comments
 (0)