1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-09-30 21:28:55 +02:00

Fixed typo in IApplicationCoreEvents interface

This commit is contained in:
salvadordf
2023-08-03 15:58:57 +02:00
parent 312c9530bb
commit 6b31c99902
7 changed files with 24 additions and 24 deletions

View File

@@ -210,7 +210,7 @@ procedure TCefCustomBrowserProcessHandler.OnRegisterCustomPreferences(type_
begin
try
if (FCefApp <> nil) then
IAppplicationCoreEvents(FCefApp).doOnRegisterCustomPreferences(type_, registrar);
IApplicationCoreEvents(FCefApp).doOnRegisterCustomPreferences(type_, registrar);
except
on e : exception do
if CustomExceptionHandler('TCefCustomBrowserProcessHandler.OnRegisterCustomPreferences', e) then raise;
@@ -221,7 +221,7 @@ procedure TCefCustomBrowserProcessHandler.OnContextInitialized;
begin
try
if (FCefApp <> nil) then
IAppplicationCoreEvents(FCefApp).doOnContextInitialized;
IApplicationCoreEvents(FCefApp).doOnContextInitialized;
except
on e : exception do
if CustomExceptionHandler('TCefCustomBrowserProcessHandler.OnContextInitialized', e) then raise;
@@ -232,7 +232,7 @@ procedure TCefCustomBrowserProcessHandler.OnBeforeChildProcessLaunch(const comma
begin
try
if (FCefApp <> nil) then
IAppplicationCoreEvents(FCefApp).doOnBeforeChildProcessLaunch(commandLine);
IApplicationCoreEvents(FCefApp).doOnBeforeChildProcessLaunch(commandLine);
except
on e : exception do
if CustomExceptionHandler('TCefCustomBrowserProcessHandler.OnBeforeChildProcessLaunch', e) then raise;
@@ -243,7 +243,7 @@ procedure TCefCustomBrowserProcessHandler.OnScheduleMessagePumpWork(const delayM
begin
try
if (FCefApp <> nil) then
IAppplicationCoreEvents(FCefApp).doOnScheduleMessagePumpWork(delayMs);
IApplicationCoreEvents(FCefApp).doOnScheduleMessagePumpWork(delayMs);
except
on e : exception do
if CustomExceptionHandler('TCefCustomBrowserProcessHandler.OnScheduleMessagePumpWork', e) then raise;
@@ -254,7 +254,7 @@ procedure TCefCustomBrowserProcessHandler.GetDefaultClient(var aClient : ICefCli
begin
try
if (FCefApp <> nil) then
IAppplicationCoreEvents(FCefApp).doGetDefaultClient(aClient);
IApplicationCoreEvents(FCefApp).doGetDefaultClient(aClient);
except
on e : exception do
if CustomExceptionHandler('TCefCustomBrowserProcessHandler.GetDefaultClient', e) then raise;