Skip to content

Commit f88de60

Browse files
S1artiemagreenblatt
authored andcommitted
Update to CEF version 80.0.4+g74f7b0c+chromium-80.0.3987.122
1 parent cbde7f9 commit f88de60

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

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

122122
# Specify the CEF distribution version.
123123
if(NOT DEFINED CEF_VERSION)
124-
set(CEF_VERSION "78.3.9+gc7345f2+chromium-78.0.3904.108")
124+
set(CEF_VERSION "80.0.4+g74f7b0c+chromium-80.0.3987.122")
125125
endif()
126126

127127
# Determine the platform.

java/org/cef/handler/CefLoadHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ enum ErrorCode {
239239
ERR_DNS_CACHE_MISS(-804),
240240
ERR_DNS_SEARCH_EMPTY(-805),
241241
ERR_DNS_SORT_ERROR(-806),
242-
ERR_DNS_HTTP_FAILED(-807);
242+
ERR_DNS_SECURE_RESOLVER_HOSTNAME_RESOLUTION_FAILED(-808);
243243

244244
static private final Map<Integer, ErrorCode> CODES = new HashMap<>();
245245
static {

native/jni_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ jobject NewJNIErrorCode(JNIEnv* env, cef_errorcode_t errorCode) {
747747
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
748748
ERR_DNS_SORT_ERROR, jerrorCode);
749749
JNI_CASE(env, "org/cef/handler/CefLoadHandler$ErrorCode",
750-
ERR_DNS_HTTP_FAILED, jerrorCode);
750+
ERR_DNS_SECURE_RESOLVER_HOSTNAME_RESOLUTION_FAILED, jerrorCode);
751751
}
752752
return jerrorCode;
753753
}

0 commit comments

Comments
 (0)