2017-01-27 16:37:51 +01:00
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ***************************** CEF4Delphi *******************************
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
//
|
|
|
|
|
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
|
|
|
|
|
// browser in Delphi applications.
|
|
|
|
|
//
|
|
|
|
|
// The original license of DCEF3 still applies to CEF4Delphi.
|
|
|
|
|
//
|
|
|
|
|
// For more information about CEF4Delphi visit :
|
|
|
|
|
// https://www.briskbard.com/index.php?lang=en&pageid=cef
|
|
|
|
|
//
|
2018-05-12 14:50:54 +02:00
|
|
|
|
// Copyright <20> 2018 Salvador Diaz Fau. All rights reserved.
|
2017-01-27 16:37:51 +01:00
|
|
|
|
//
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ************ vvvv Original license and comments below vvvv *************
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
(*
|
|
|
|
|
* Delphi Chromium Embedded 3
|
|
|
|
|
*
|
|
|
|
|
* Usage allowed under the restrictions of the Lesser GNU General Public License
|
|
|
|
|
* or alternatively the restrictions of the Mozilla Public License 1.1
|
|
|
|
|
*
|
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
|
|
|
* the specific language governing rights and limitations under the License.
|
|
|
|
|
*
|
|
|
|
|
* Unit owner : Henri Gourvest <hgourvest@gmail.com>
|
|
|
|
|
* Web site : http://www.progdigy.com
|
|
|
|
|
* Repository : http://code.google.com/p/delphichromiumembedded/
|
|
|
|
|
* Group : http://groups.google.com/group/delphichromiumembedded
|
|
|
|
|
*
|
|
|
|
|
* Embarcadero Technologies, Inc is not permitted to use or redistribute
|
|
|
|
|
* this source code without explicit permission.
|
|
|
|
|
*
|
|
|
|
|
*)
|
|
|
|
|
|
|
|
|
|
unit uCEFRenderProcessHandler;
|
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
|
{$IFDEF FPC}
|
|
|
|
|
{$MODE OBJFPC}{$H+}
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
2018-11-22 15:02:21 +01:00
|
|
|
|
{$IFNDEF CPUX64}{$ALIGN ON}{$ENDIF}
|
|
|
|
|
{$MINENUMSIZE 4}
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$I cef.inc}
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2017-03-22 15:22:11 +01:00
|
|
|
|
{$IFDEF DELPHI16_UP}
|
|
|
|
|
System.Classes,
|
|
|
|
|
{$ELSE}
|
|
|
|
|
Classes,
|
|
|
|
|
{$ENDIF}
|
2017-03-16 19:09:42 +01:00
|
|
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes, uCEFListValue, uCEFBrowser, uCEFFrame, uCEFRequest,
|
2017-11-25 19:04:15 +01:00
|
|
|
|
uCEFv8Context, uCEFv8Exception, uCEFv8StackTrace, uCEFDomNode, uCEFProcessMessage, uCEFApplication;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
|
TCefRenderProcessHandlerOwn = class(TCefBaseRefCountedOwn, ICefRenderProcessHandler)
|
2017-03-22 15:22:11 +01:00
|
|
|
|
protected
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure OnRenderThreadCreated(const extraInfo: ICefListValue); virtual; abstract;
|
|
|
|
|
procedure OnWebKitInitialized; virtual; abstract;
|
|
|
|
|
procedure OnBrowserCreated(const browser: ICefBrowser); virtual; abstract;
|
|
|
|
|
procedure OnBrowserDestroyed(const browser: ICefBrowser); virtual; abstract;
|
|
|
|
|
function GetLoadHandler: ICefLoadHandler; virtual;
|
|
|
|
|
procedure OnContextCreated(const browser: ICefBrowser; const frame: ICefFrame; const context: ICefv8Context); virtual; abstract;
|
|
|
|
|
procedure OnContextReleased(const browser: ICefBrowser; const frame: ICefFrame; const context: ICefv8Context); virtual; abstract;
|
2018-03-29 20:02:04 +02:00
|
|
|
|
procedure OnUncaughtException(const browser: ICefBrowser; const frame: ICefFrame; const context: ICefv8Context; const V8Exception: ICefV8Exception; const stackTrace: ICefV8StackTrace); virtual; abstract;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure OnFocusedNodeChanged(const browser: ICefBrowser; const frame: ICefFrame; const node: ICefDomNode); virtual; abstract;
|
|
|
|
|
function OnProcessMessageReceived(const browser: ICefBrowser; sourceProcess: TCefProcessId; const aMessage: ICefProcessMessage): Boolean; virtual;
|
2017-12-27 14:05:33 +01:00
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
public
|
|
|
|
|
constructor Create; virtual;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TCefCustomRenderProcessHandler = class(TCefRenderProcessHandlerOwn)
|
|
|
|
|
protected
|
2018-11-15 19:08:16 +01:00
|
|
|
|
FCefApp : TCefApplication;
|
|
|
|
|
FLoadHandler : ICefLoadHandler;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
|
|
|
|
|
procedure OnRenderThreadCreated(const extraInfo: ICefListValue); override;
|
|
|
|
|
procedure OnWebKitInitialized; override;
|
|
|
|
|
procedure OnBrowserCreated(const browser: ICefBrowser); override;
|
|
|
|
|
procedure OnBrowserDestroyed(const browser: ICefBrowser); override;
|
2018-11-15 19:08:16 +01:00
|
|
|
|
function GetLoadHandler: ICefLoadHandler; override;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure OnContextCreated(const browser: ICefBrowser; const frame: ICefFrame; const context: ICefv8Context); override;
|
|
|
|
|
procedure OnContextReleased(const browser: ICefBrowser; const frame: ICefFrame; const context: ICefv8Context); override;
|
2018-03-29 20:02:04 +02:00
|
|
|
|
procedure OnUncaughtException(const browser: ICefBrowser; const frame: ICefFrame; const context: ICefv8Context; const V8Exception: ICefV8Exception; const stackTrace: ICefV8StackTrace); override;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure OnFocusedNodeChanged(const browser: ICefBrowser; const frame: ICefFrame; const node: ICefDomNode); override;
|
|
|
|
|
function OnProcessMessageReceived(const browser: ICefBrowser; sourceProcess: TCefProcessId; const aMessage : ICefProcessMessage): Boolean; override;
|
|
|
|
|
|
|
|
|
|
public
|
|
|
|
|
constructor Create(const aCefApp : TCefApplication); reintroduce;
|
|
|
|
|
destructor Destroy; override;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
2018-03-29 20:02:04 +02:00
|
|
|
|
{$IFDEF DELPHI16_UP}
|
|
|
|
|
System.SysUtils,
|
|
|
|
|
{$ELSE}
|
|
|
|
|
SysUtils,
|
|
|
|
|
{$ENDIF}
|
2018-11-15 19:08:16 +01:00
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFConstants, uCEFLoadHandler;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure cef_render_process_handler_on_render_thread_created(self : PCefRenderProcessHandler;
|
|
|
|
|
extra_info : PCefListValue); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
TCefRenderProcessHandlerOwn(TempObject).OnRenderThreadCreated(TCefListValueRef.UnWrap(extra_info));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure cef_render_process_handler_on_web_kit_initialized(self: PCefRenderProcessHandler); stdcall;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
TCefRenderProcessHandlerOwn(TempObject).OnWebKitInitialized;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure cef_render_process_handler_on_browser_created(self : PCefRenderProcessHandler;
|
|
|
|
|
browser : PCefBrowser); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
TCefRenderProcessHandlerOwn(TempObject).OnBrowserCreated(TCefBrowserRef.UnWrap(browser));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure cef_render_process_handler_on_browser_destroyed(self : PCefRenderProcessHandler;
|
|
|
|
|
browser : PCefBrowser); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
TCefRenderProcessHandlerOwn(TempObject).OnBrowserDestroyed(TCefBrowserRef.UnWrap(browser));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function cef_render_process_handler_get_load_handler(self: PCefRenderProcessHandler): PCefLoadHandler; stdcall;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := nil;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := CefGetData(TCefRenderProcessHandlerOwn(TempObject).GetLoadHandler);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure cef_render_process_handler_on_context_created(self : PCefRenderProcessHandler;
|
|
|
|
|
browser : PCefBrowser;
|
|
|
|
|
frame : PCefFrame;
|
|
|
|
|
context : PCefv8Context); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
TCefRenderProcessHandlerOwn(TempObject).OnContextCreated(TCefBrowserRef.UnWrap(browser),
|
|
|
|
|
TCefFrameRef.UnWrap(frame),
|
|
|
|
|
TCefv8ContextRef.UnWrap(context));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure cef_render_process_handler_on_context_released(self : PCefRenderProcessHandler;
|
|
|
|
|
browser : PCefBrowser;
|
|
|
|
|
frame : PCefFrame;
|
|
|
|
|
context : PCefv8Context); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
TCefRenderProcessHandlerOwn(TempObject).OnContextReleased(TCefBrowserRef.UnWrap(browser),
|
|
|
|
|
TCefFrameRef.UnWrap(frame),
|
|
|
|
|
TCefv8ContextRef.UnWrap(context));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure cef_render_process_handler_on_uncaught_exception(self : PCefRenderProcessHandler;
|
|
|
|
|
browser : PCefBrowser;
|
|
|
|
|
frame : PCefFrame;
|
|
|
|
|
context : PCefv8Context;
|
|
|
|
|
exception : PCefV8Exception;
|
|
|
|
|
stackTrace : PCefV8StackTrace); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
TCefRenderProcessHandlerOwn(TempObject).OnUncaughtException(TCefBrowserRef.UnWrap(browser),
|
|
|
|
|
TCefFrameRef.UnWrap(frame),
|
|
|
|
|
TCefv8ContextRef.UnWrap(context),
|
|
|
|
|
TCefV8ExceptionRef.UnWrap(exception),
|
|
|
|
|
TCefV8StackTraceRef.UnWrap(stackTrace));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure cef_render_process_handler_on_focused_node_changed(self : PCefRenderProcessHandler;
|
|
|
|
|
browser : PCefBrowser;
|
|
|
|
|
frame : PCefFrame;
|
|
|
|
|
node : PCefDomNode); stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
TCefRenderProcessHandlerOwn(TempObject).OnFocusedNodeChanged(TCefBrowserRef.UnWrap(browser),
|
|
|
|
|
TCefFrameRef.UnWrap(frame),
|
|
|
|
|
TCefDomNodeRef.UnWrap(node));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
function cef_render_process_handler_on_process_message_received(self : PCefRenderProcessHandler;
|
|
|
|
|
browser : PCefBrowser;
|
|
|
|
|
source_process : TCefProcessId;
|
|
|
|
|
message_ : PCefProcessMessage): Integer; stdcall;
|
|
|
|
|
var
|
|
|
|
|
TempObject : TObject;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
Result := Ord(False);
|
2017-11-25 19:04:15 +01:00
|
|
|
|
TempObject := CefGetObject(self);
|
|
|
|
|
|
|
|
|
|
if (TempObject <> nil) and (TempObject is TCefRenderProcessHandlerOwn) then
|
|
|
|
|
Result := Ord(TCefRenderProcessHandlerOwn(TempObject).OnProcessMessageReceived(TCefBrowserRef.UnWrap(browser),
|
|
|
|
|
source_process,
|
2018-03-29 20:02:04 +02:00
|
|
|
|
TCefProcessMessageRef.UnWrap(message_)));
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
2017-03-22 15:22:11 +01:00
|
|
|
|
// TCefRenderProcessHandlerOwn
|
|
|
|
|
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
constructor TCefRenderProcessHandlerOwn.Create;
|
|
|
|
|
begin
|
|
|
|
|
inherited CreateData(SizeOf(TCefRenderProcessHandler));
|
2017-03-22 15:22:11 +01:00
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
with PCefRenderProcessHandler(FData)^ do
|
2017-03-22 15:22:11 +01:00
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
|
on_render_thread_created := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_render_thread_created;
|
|
|
|
|
on_web_kit_initialized := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_web_kit_initialized;
|
|
|
|
|
on_browser_created := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_browser_created;
|
|
|
|
|
on_browser_destroyed := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_browser_destroyed;
|
|
|
|
|
get_load_handler := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_get_load_handler;
|
|
|
|
|
on_context_created := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_context_created;
|
|
|
|
|
on_context_released := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_context_released;
|
|
|
|
|
on_uncaught_exception := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_uncaught_exception;
|
|
|
|
|
on_focused_node_changed := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_focused_node_changed;
|
|
|
|
|
on_process_message_received := {$IFDEF FPC}@{$ENDIF}cef_render_process_handler_on_process_message_received;
|
2017-03-22 15:22:11 +01:00
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
function TCefRenderProcessHandlerOwn.GetLoadHandler: ICefLoadHandler;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
|
|
|
|
Result := nil;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
function TCefRenderProcessHandlerOwn.OnProcessMessageReceived(const browser : ICefBrowser;
|
|
|
|
|
sourceProcess : TCefProcessId;
|
|
|
|
|
const aMessage : ICefProcessMessage): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
Result := False;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
|
|
|
|
|
// TCefCustomRenderProcessHandler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor TCefCustomRenderProcessHandler.Create(const aCefApp : TCefApplication);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
inherited Create;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
FCefApp := aCefApp;
|
2018-11-15 19:08:16 +01:00
|
|
|
|
|
|
|
|
|
if (FCefApp <> nil) and FCefApp.MustCreateLoadHandler then
|
|
|
|
|
FLoadHandler := TCustomRenderLoadHandler.Create(FCefApp)
|
|
|
|
|
else
|
|
|
|
|
FLoadHandler := nil;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
destructor TCefCustomRenderProcessHandler.Destroy;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-11-15 19:08:16 +01:00
|
|
|
|
FCefApp := nil;
|
|
|
|
|
FLoadHandler := nil;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
inherited Destroy;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure TCefCustomRenderProcessHandler.OnRenderThreadCreated(const extraInfo: ICefListValue);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnRenderThreadCreated(extraInfo);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnRenderThreadCreated', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure TCefCustomRenderProcessHandler.OnWebKitInitialized;
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnWebKitInitialized;
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnWebKitInitialized', e) then raise;
|
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure TCefCustomRenderProcessHandler.OnBrowserCreated(const browser: ICefBrowser);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnBrowserCreated(browser);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnBrowserCreated', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure TCefCustomRenderProcessHandler.OnBrowserDestroyed(const browser: ICefBrowser);
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnBrowserDestroyed(browser);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnBrowserDestroyed', e) then raise;
|
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2018-11-15 19:08:16 +01:00
|
|
|
|
function TCefCustomRenderProcessHandler.GetLoadHandler: ICefLoadHandler;
|
|
|
|
|
begin
|
|
|
|
|
if (FLoadHandler <> nil) then
|
|
|
|
|
Result := FLoadHandler
|
|
|
|
|
else
|
|
|
|
|
Result := inherited GetLoadHandler;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure TCefCustomRenderProcessHandler.OnContextCreated(const browser : ICefBrowser;
|
|
|
|
|
const frame : ICefFrame;
|
|
|
|
|
const context : ICefv8Context);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnContextCreated(browser, frame, context);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnContextCreated', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure TCefCustomRenderProcessHandler.OnContextReleased(const browser : ICefBrowser;
|
|
|
|
|
const frame : ICefFrame;
|
|
|
|
|
const context : ICefv8Context);
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnContextReleased(browser, frame, context);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnContextReleased', e) then raise;
|
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
procedure TCefCustomRenderProcessHandler.OnUncaughtException(const browser : ICefBrowser;
|
|
|
|
|
const frame : ICefFrame;
|
|
|
|
|
const context : ICefv8Context;
|
|
|
|
|
const V8Exception : ICefV8Exception;
|
|
|
|
|
const stackTrace : ICefV8StackTrace);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnUncaughtException(browser, frame, context, V8Exception, stackTrace);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnUncaughtException', e) then raise;
|
|
|
|
|
end;
|
2017-11-25 19:04:15 +01:00
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
procedure TCefCustomRenderProcessHandler.OnFocusedNodeChanged(const browser : ICefBrowser;
|
|
|
|
|
const frame : ICefFrame;
|
|
|
|
|
const node : ICefDomNode);
|
|
|
|
|
begin
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnFocusedNodeChanged(browser, frame, node);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnFocusedNodeChanged', e) then raise;
|
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2017-11-25 19:04:15 +01:00
|
|
|
|
function TCefCustomRenderProcessHandler.OnProcessMessageReceived(const browser : ICefBrowser;
|
|
|
|
|
sourceProcess : TCefProcessId;
|
|
|
|
|
const aMessage : ICefProcessMessage): Boolean;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-11-25 19:04:15 +01:00
|
|
|
|
Result := inherited OnProcessMessageReceived(browser, sourceProcess, aMessage);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
2018-03-29 20:02:04 +02:00
|
|
|
|
try
|
|
|
|
|
if (FCefApp <> nil) then FCefApp.Internal_OnProcessMessageReceived(browser, sourceProcess, aMessage, Result);
|
|
|
|
|
except
|
|
|
|
|
on e : exception do
|
|
|
|
|
if CustomExceptionHandler('TCefCustomRenderProcessHandler.OnProcessMessageReceived', e) then raise;
|
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|