You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-11-23 21:34:53 +02:00
Update to CEF 3.3325.1755.g7c74b17
This commit is contained in:
@@ -77,9 +77,14 @@ uses
|
||||
procedure cef_web_plugin_unstable_callback_is_unstable(self: PCefWebPluginUnstableCallback;
|
||||
const path: PCefString;
|
||||
unstable: Integer); stdcall;
|
||||
var
|
||||
TempObject : TObject;
|
||||
begin
|
||||
with TCefWebPluginUnstableCallbackOwn(CefGetObject(self)) do
|
||||
IsUnstable(CefString(path), unstable <> 0);
|
||||
TempObject := CefGetObject(self);
|
||||
|
||||
if (TempObject <> nil) and (TempObject is TCefWebPluginUnstableCallbackOwn) then
|
||||
TCefWebPluginUnstableCallbackOwn(TempObject).IsUnstable(CefString(path),
|
||||
unstable <> 0);
|
||||
end;
|
||||
|
||||
// TCefWebPluginUnstableCallbackOwn
|
||||
|
||||
Reference in New Issue
Block a user