diff --git a/cef_api_versions.json b/cef_api_versions.json index 1f0a898a4..fdb295f5a 100644 --- a/cef_api_versions.json +++ b/cef_api_versions.json @@ -65,8 +65,14 @@ "linux": "e5ac12b1bd88b9ece6ceaa57848aaba61ab85242", "mac": "9e84009c92c25aa80935727b5e4526b23439a575", "windows": "65c7157dd3e8eba9bcc38db2bd7f26508c717f3e" + }, + "13800": { + "comment": "Added June 02, 2025.", + "linux": "72c83a1455706c0f964505a6edcbf00c4a00575d", + "mac": "09110c1f3bbe0e8a8c26ddf6df3388d73a6593d1", + "windows": "1cde3ec27f93747ba42c0f2aa00467a5a16adfd4" } }, - "last": "13700", + "last": "13800", "min": "13300" } \ No newline at end of file diff --git a/include/cef_version_info.h b/include/cef_version_info.h index 7d56fdec9..92f1b0cc8 100644 --- a/include/cef_version_info.h +++ b/include/cef_version_info.h @@ -58,7 +58,7 @@ extern "C" { /// CEF_EXPORT int cef_version_info(int entry); -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) /// /// Structure representing all CEF version information. diff --git a/include/internal/cef_types.h b/include/internal/cef_types.h index 9b94d574c..6b1241dd0 100644 --- a/include/internal/cef_types.h +++ b/include/internal/cef_types.h @@ -672,7 +672,7 @@ typedef struct _cef_browser_settings_t { /// Controls whether databases can be used. Also configurable using the /// "disable-databases" command-line switch. /// -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) cef_state_t databases_deprecated; #else cef_state_t databases; @@ -1065,7 +1065,7 @@ typedef enum { CEF_RESULT_CODE_CHROME_FIRST, -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) /// The process is of an unknown type. CEF_RESULT_CODE_BAD_PROCESS_TYPE = 6, #endif @@ -1102,12 +1102,12 @@ typedef enum { /// system state can't be recovered and will be unstable. CEF_RESULT_CODE_SYSTEM_RESOURCE_EXHAUSTED = 37, -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) /// The browser process exited because it was re-launched without elevation. CEF_RESULT_CODE_NORMAL_EXIT_AUTO_DE_ELEVATED = 38, #endif -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) CEF_RESULT_CODE_CHROME_LAST = 39, #else CEF_RESULT_CODE_CHROME_LAST = 38, @@ -3647,7 +3647,7 @@ typedef enum { #if CEF_API_ADDED(13400) CEF_CPAIT_CHANGE_PASSWORD, #endif -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) CEF_CPAIT_LENS_OVERLAY_HOMEWORK, #endif CEF_CPAIT_NUM_VALUES, diff --git a/include/internal/cef_types_content_settings.h b/include/internal/cef_types_content_settings.h index 1f6a4e0f8..6fdd293bc 100644 --- a/include/internal/cef_types_content_settings.h +++ b/include/internal/cef_types_content_settings.h @@ -240,7 +240,7 @@ typedef enum { /// requests. /// See also: https://wicg.github.io/cors-rfc1918 /// Set through enterprise policies only. -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) CEF_CONTENT_SETTING_TYPE_INSECURE_PRIVATE_NETWORK_DEPRECATED, #else CEF_CONTENT_SETTING_TYPE_INSECURE_PRIVATE_NETWORK, @@ -516,7 +516,7 @@ typedef enum { CEF_CONTENT_SETTING_TYPE_LOCAL_NETWORK_ACCESS, #endif -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) /// Stores information on-device language packs for which a site has /// installed using the Web Speech API. CEF_CONTENT_SETTING_TYPE_ON_DEVICE_SPEECH_RECOGNITION_LANGUAGES_DOWNLOADED, diff --git a/include/internal/cef_types_wrappers.h b/include/internal/cef_types_wrappers.h index 869c49f24..7872b81c4 100644 --- a/include/internal/cef_types_wrappers.h +++ b/include/internal/cef_types_wrappers.h @@ -567,7 +567,7 @@ struct CefBrowserSettingsTraits { target->text_area_resize = src->text_area_resize; target->tab_to_links = src->tab_to_links; target->local_storage = src->local_storage; -#if !CEF_API_ADDED(CEF_NEXT) +#if !CEF_API_ADDED(13800) target->databases = src->databases; #endif target->webgl = src->webgl; diff --git a/libcef_dll/wrapper/cef_scoped_library_loader_win.cc b/libcef_dll/wrapper/cef_scoped_library_loader_win.cc index d230eaac5..7f14e6ba3 100644 --- a/libcef_dll/wrapper/cef_scoped_library_loader_win.cc +++ b/libcef_dll/wrapper/cef_scoped_library_loader_win.cc @@ -59,7 +59,7 @@ HMODULE Load(const std::wstring& dll_path, // which non-matching versions are compatible. cef_version_info_t dll_info = {}; dll_info.size = sizeof(cef_version_info_t); -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13800) cef_version_info_all(&dll_info); #else // Only populating the members that are used below.