Tag 13700 API version

This commit is contained in:
Marshall Greenblatt
2025-05-07 13:25:44 -04:00
parent 8b09ea4324
commit ad4fa9cf24
4 changed files with 12 additions and 6 deletions

View File

@ -59,8 +59,14 @@
"linux": "40b224f295a20694241c5db49721bc90a3796f30",
"mac": "ff885fe921f9eae1a5ce6a71b30b0c37b306bf56",
"windows": "116a4153047ee1ee67f17fc938f084ee72b24e54"
},
"13700": {
"comment": "Added May 07, 2025.",
"linux": "e5ac12b1bd88b9ece6ceaa57848aaba61ab85242",
"mac": "9e84009c92c25aa80935727b5e4526b23439a575",
"windows": "65c7157dd3e8eba9bcc38db2bd7f26508c717f3e"
}
},
"last": "13601",
"last": "13700",
"min": "13300"
}

View File

@ -164,7 +164,7 @@ class CefDisplayHandler : public virtual CefBaseRefCounted {
bool has_video_access,
bool has_audio_access) {}
#if CEF_API_ADDED(CEF_NEXT)
#if CEF_API_ADDED(13700)
///
/// Called when JavaScript is requesting new bounds via window.moveTo/By() or
/// window.resizeTo/By(). |new_bounds| are in DIP screen coordinates.
@ -184,7 +184,7 @@ class CefDisplayHandler : public virtual CefBaseRefCounted {
/// Default move/resize behavior is only provided with Views-hosted Chrome
/// style browsers.
///
/*--cef(added=next)--*/
/*--cef(added=13700)--*/
virtual bool OnContentsBoundsChange(CefRefPtr<CefBrowser> browser,
const CefRect& new_bounds) {
return false;
@ -197,7 +197,7 @@ class CefDisplayHandler : public virtual CefBaseRefCounted {
/// root window bounds on Windows or the browser content bounds on Linux. For
/// additional usage details see CefBrowserHost::NotifyScreenInfoChanged.
///
/*--cef(added=next)--*/
/*--cef(added=13700)--*/
virtual bool GetRootWindowScreenRect(CefRefPtr<CefBrowser> browser,
CefRect& rect) {
return false;

View File

@ -864,7 +864,7 @@ bool ClientHandler::OnCursorChange(CefRefPtr<CefBrowser> browser,
return mouse_cursor_change_disabled_;
}
#if CEF_API_ADDED(CEF_NEXT)
#if CEF_API_ADDED(13700)
bool ClientHandler::OnContentsBoundsChange(CefRefPtr<CefBrowser> browser,
const CefRect& new_bounds) {
CEF_REQUIRE_UI_THREAD();

View File

@ -183,7 +183,7 @@ class ClientHandler : public BaseClientHandler,
CefCursorHandle cursor,
cef_cursor_type_t type,
const CefCursorInfo& custom_cursor_info) override;
#if CEF_API_ADDED(CEF_NEXT)
#if CEF_API_ADDED(13700)
bool OnContentsBoundsChange(CefRefPtr<CefBrowser> browser,
const CefRect& new_bounds) override;
bool GetRootWindowScreenRect(CefRefPtr<CefBrowser> browser,