Skip to content

Commit 8db54e9

Browse files
committed
Tag 13500 API version
1 parent 00b4581 commit 8db54e9

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

cef_api_versions.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,14 @@
4141
"linux": "b14bee2c0fd250da67faea421f620b58e5dea9a2",
4242
"mac": "b54732b528bc2669481ec0cf17c7b97b033720b9",
4343
"windows": "751255204f006b8b883a8baf552a2da792f8aa44"
44+
},
45+
"13500": {
46+
"comment": "Added March 12, 2025.",
47+
"linux": "5b7c2284ed2542cf6212981d62ca9122fb2a4e88",
48+
"mac": "9862177631e8059a497d6086058168dd47477ab7",
49+
"windows": "3e78b6fe5fd31d69049499450849ada17a720a53"
4450
}
4551
},
46-
"last": "13401",
52+
"last": "13500",
4753
"min": "13300"
4854
}

include/base/cef_dump_without_crashing.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ bool CefDumpWithoutCrashing(
7171
const char* file_name = __builtin_FILE(),
7272
int line_number = __builtin_LINE());
7373

74-
#if CEF_API_REMOVED(CEF_NEXT)
74+
#if CEF_API_REMOVED(13500)
7575
///
7676
/// This function allows for generating of crash dumps without any throttling
7777
/// constraints. If should also only be called after CefInitialize has been

include/internal/cef_types_content_settings.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ typedef enum {
495495
CEF_CONTENT_SETTING_TYPE_CONTROLLED_FRAME,
496496
#endif
497497

498-
#if CEF_API_ADDED(CEF_NEXT)
498+
#if CEF_API_ADDED(13500)
499499
/// Website setting which is used for UnusedSitePermissionsService to
500500
/// store revoked notification permissions of disruptive sites.
501501
CEF_CONTENT_SETTING_TYPE_REVOKED_DISRUPTIVE_NOTIFICATION_PERMISSIONS,

libcef/common/base_impl.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ CEF_EXPORT int cef_dump_without_crashing(long long mseconds_between_dumps,
241241
}
242242

243243
CEF_EXPORT int cef_dump_without_crashing_unthrottled() {
244-
CEF_API_REQUIRE_REMOVED(CEF_NEXT);
244+
CEF_API_REQUIRE_REMOVED(13500);
245245
NOTIMPLEMENTED();
246246
return 0;
247247
}

libcef_dll/base/cef_dump_without_crashing.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bool CefDumpWithoutCrashing(long long mseconds_between_dumps,
1515
file_name, line_number);
1616
}
1717

18-
#if CEF_API_REMOVED(CEF_NEXT)
18+
#if CEF_API_REMOVED(13500)
1919
bool CefDumpWithoutCrashingUnthrottled() {
2020
return cef_dump_without_crashing_unthrottled();
2121
}

0 commit comments

Comments
 (0)