Tag 13800 API version

This commit is contained in:
Marshall Greenblatt
2025-06-02 13:53:14 -04:00
parent f8a746373e
commit 31d14c386f
6 changed files with 17 additions and 11 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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