Skip to content

Commit 87476e9

Browse files
S1artiemagreenblatt
authored andcommitted
Update to CEF version 110.0.25+g75b1c96+chromium-110.0.5481.78
Chromium removed ERR_BLOCKED_ENROLLMENT_CHECK_PENDING (error -24)
1 parent 854af1f commit 87476e9

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
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 "109.1.11+g6d4fdb2+chromium-109.0.5414.87")
133+
set(CEF_VERSION "110.0.25+g75b1c96+chromium-110.0.5481.78")
134134
endif()
135135

136136
# Determine the platform.

java/org/cef/handler/CefLoadHandler.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ enum ErrorCode {
4040
ERR_NETWORK_CHANGED(-21),
4141
ERR_BLOCKED_BY_ADMINISTRATOR(-22),
4242
ERR_SOCKET_IS_CONNECTED(-23),
43-
ERR_BLOCKED_ENROLLMENT_CHECK_PENDING(-24),
4443
ERR_UPLOAD_STREAM_REWIND_NOT_SUPPORTED(-25),
4544
ERR_CONTEXT_SHUT_DOWN(-26),
4645
ERR_BLOCKED_BY_RESPONSE(-27),

native/jni_util.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,6 @@ jobject NewJNIErrorCode(JNIEnv* env, cef_errorcode_t errorCode) {
339339
ERR_BLOCKED_BY_ADMINISTRATOR, jerrorCode);
340340
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
341341
ERR_SOCKET_IS_CONNECTED, jerrorCode);
342-
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
343-
ERR_BLOCKED_ENROLLMENT_CHECK_PENDING, jerrorCode);
344342
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
345343
ERR_UPLOAD_STREAM_REWIND_NOT_SUPPORTED, jerrorCode);
346344
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",

0 commit comments

Comments
 (0)