diff --git a/cef_api_versions.json b/cef_api_versions.json index fc45c0007..ecc81fa84 100644 --- a/cef_api_versions.json +++ b/cef_api_versions.json @@ -41,8 +41,14 @@ "linux": "b14bee2c0fd250da67faea421f620b58e5dea9a2", "mac": "b54732b528bc2669481ec0cf17c7b97b033720b9", "windows": "751255204f006b8b883a8baf552a2da792f8aa44" + }, + "13500": { + "comment": "Added March 12, 2025.", + "linux": "5b7c2284ed2542cf6212981d62ca9122fb2a4e88", + "mac": "9862177631e8059a497d6086058168dd47477ab7", + "windows": "3e78b6fe5fd31d69049499450849ada17a720a53" } }, - "last": "13401", + "last": "13500", "min": "13300" } \ No newline at end of file diff --git a/include/base/cef_dump_without_crashing.h b/include/base/cef_dump_without_crashing.h index 1ab6ab885..017dac736 100644 --- a/include/base/cef_dump_without_crashing.h +++ b/include/base/cef_dump_without_crashing.h @@ -71,7 +71,7 @@ bool CefDumpWithoutCrashing( const char* file_name = __builtin_FILE(), int line_number = __builtin_LINE()); -#if CEF_API_REMOVED(CEF_NEXT) +#if CEF_API_REMOVED(13500) /// /// This function allows for generating of crash dumps without any throttling /// constraints. If should also only be called after CefInitialize has been diff --git a/include/internal/cef_types_content_settings.h b/include/internal/cef_types_content_settings.h index cd93ef785..f1e8d61a0 100644 --- a/include/internal/cef_types_content_settings.h +++ b/include/internal/cef_types_content_settings.h @@ -495,7 +495,7 @@ typedef enum { CEF_CONTENT_SETTING_TYPE_CONTROLLED_FRAME, #endif -#if CEF_API_ADDED(CEF_NEXT) +#if CEF_API_ADDED(13500) /// Website setting which is used for UnusedSitePermissionsService to /// store revoked notification permissions of disruptive sites. CEF_CONTENT_SETTING_TYPE_REVOKED_DISRUPTIVE_NOTIFICATION_PERMISSIONS, diff --git a/libcef/common/base_impl.cc b/libcef/common/base_impl.cc index 7d28a379b..a977c91b5 100644 --- a/libcef/common/base_impl.cc +++ b/libcef/common/base_impl.cc @@ -241,7 +241,7 @@ CEF_EXPORT int cef_dump_without_crashing(long long mseconds_between_dumps, } CEF_EXPORT int cef_dump_without_crashing_unthrottled() { - CEF_API_REQUIRE_REMOVED(CEF_NEXT); + CEF_API_REQUIRE_REMOVED(13500); NOTIMPLEMENTED(); return 0; } diff --git a/libcef_dll/base/cef_dump_without_crashing.cc b/libcef_dll/base/cef_dump_without_crashing.cc index 721ae5af5..3d14d3d98 100644 --- a/libcef_dll/base/cef_dump_without_crashing.cc +++ b/libcef_dll/base/cef_dump_without_crashing.cc @@ -15,7 +15,7 @@ bool CefDumpWithoutCrashing(long long mseconds_between_dumps, file_name, line_number); } -#if CEF_API_REMOVED(CEF_NEXT) +#if CEF_API_REMOVED(13500) bool CefDumpWithoutCrashingUnthrottled() { return cef_dump_without_crashing_unthrottled(); }