You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-06-12 22:07:39 +02:00
Update to CEF 99.2.7
This commit is contained in:
@ -781,7 +781,7 @@ type
|
||||
function ExecuteDevToolsMethod(message_id: integer; const method: ustring; const params: ICefDictionaryValue): Integer;
|
||||
function AddDevToolsMessageObserver(const observer: ICefDevToolsMessageObserver): ICefRegistration;
|
||||
|
||||
procedure Find(aIdentifier : integer; const aSearchText : ustring; aForward, aMatchCase, aFindNext : Boolean);
|
||||
procedure Find(const aSearchText : ustring; aForward, aMatchCase, aFindNext : Boolean);
|
||||
procedure StopFinding(aClearSelection : Boolean);
|
||||
|
||||
procedure Print;
|
||||
@ -2212,10 +2212,10 @@ begin
|
||||
Result := AddBrowser(TempBrowser);
|
||||
end;
|
||||
|
||||
procedure TChromiumCore.Find(aIdentifier : integer; const aSearchText : ustring; aForward, aMatchCase, aFindNext : Boolean);
|
||||
procedure TChromiumCore.Find(const aSearchText : ustring; aForward, aMatchCase, aFindNext : Boolean);
|
||||
begin
|
||||
if Initialized then
|
||||
Browser.Host.Find(aIdentifier, aSearchText, aForward, aMatchCase, aFindNext);
|
||||
Browser.Host.Find(aSearchText, aForward, aMatchCase, aFindNext);
|
||||
end;
|
||||
|
||||
procedure TChromiumCore.StopFinding(aClearSelection : Boolean);
|
||||
|
Reference in New Issue
Block a user