1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-11-23 21:34:53 +02:00

Update to CEF 136.1.1

This commit is contained in:
Salvador Díaz Fau
2025-05-04 18:27:51 +02:00
parent 8752850487
commit 770019bec8
27 changed files with 2873 additions and 2439 deletions

View File

@@ -625,6 +625,7 @@ type
procedure doOnUseFramelessWindowForPictureInPicture(const browser_view: ICefBrowserView; var aResult: boolean);
procedure doOnGestureCommand(const browser_view: ICefBrowserView; gesture_command: TCefGestureCommand; var aResult : boolean);
procedure doOnGetBrowserRuntimeStyle(var aResult : TCefRuntimeStyle);
procedure doOnAllowMoveForPictureInPicture(const browser_view: ICefBrowserView; var aResult: boolean);
end;
/// <summary>
@@ -10674,6 +10675,12 @@ type
/// TCefRuntimeStyle documentation for details.
/// </summary>
procedure OnGetBrowserRuntimeStyle(var aResult : TCefRuntimeStyle);
/// <summary>
/// Return true (1) to allow the use of JavaScript moveTo/By() and
/// resizeTo/By() (without user activation) with Document picture-in-picture
/// popups.
/// </summary>
procedure OnAllowMoveForPictureInPicture(const browser_view: ICefBrowserView; var aResult: boolean);
end;
/// <summary>