Tag 13500 API version

This commit is contained in:
Marshall Greenblatt
2025-03-12 14:37:45 -04:00
parent 00b4581c9b
commit 8db54e92c2
5 changed files with 11 additions and 5 deletions

View File

@@ -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"
}

View File

@@ -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

View File

@@ -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,

View File

@@ -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;
}

View File

@@ -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();
}