1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2024-11-24 08:02:15 +02:00
CEF4Delphi/source/uCEFv8StackTrace.pas

62 lines
1.4 KiB
ObjectPascal
Raw Normal View History

2017-01-27 17:37:51 +02:00
unit uCEFv8StackTrace;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
2017-02-05 21:56:46 +02:00
{$I cef.inc}
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
2017-01-27 17:37:51 +02:00
interface
uses
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
2017-01-27 17:37:51 +02:00
type
TCefV8StackTraceRef = class(TCefBaseRefCountedRef, ICefV8StackTrace)
2017-01-27 17:37:51 +02:00
protected
function IsValid: Boolean;
function GetFrameCount: Integer;
function GetFrame(index: Integer): ICefV8StackFrame;
public
class function UnWrap(data: Pointer): ICefV8StackTrace;
class function Current(frameLimit: Integer): ICefV8StackTrace;
end;
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions, uCEFv8StackFrame;
class function TCefV8StackTraceRef.Current(frameLimit: Integer): ICefV8StackTrace;
begin
Result := UnWrap(cef_v8stack_trace_get_current(frameLimit));
end;
function TCefV8StackTraceRef.GetFrame(index: Integer): ICefV8StackFrame;
begin
Result := TCefV8StackFrameRef.UnWrap(PCefV8StackTrace(FData)^.get_frame(PCefV8StackTrace(FData), index));
2017-01-27 17:37:51 +02:00
end;
function TCefV8StackTraceRef.GetFrameCount: Integer;
begin
Result := PCefV8StackTrace(FData)^.get_frame_count(PCefV8StackTrace(FData));
2017-01-27 17:37:51 +02:00
end;
function TCefV8StackTraceRef.IsValid: Boolean;
begin
Result := PCefV8StackTrace(FData)^.is_valid(PCefV8StackTrace(FData)) <> 0;
2017-01-27 17:37:51 +02:00
end;
class function TCefV8StackTraceRef.UnWrap(data: Pointer): ICefV8StackTrace;
begin
if (data <> nil) then
Result := Create(data) as ICefV8StackTrace
else
2017-01-27 17:37:51 +02:00
Result := nil;
end;
end.