type ICefV8StackTrace = interface(ICefBaseRefCounted)
Interface representing a V8 stack trace handle. V8 handles can only be accessed from the thread on which they are created. Valid threads for creating a V8 handle include the render process main thread (TID_RENDERER) and WebWorker threads. A task runner for posting tasks on the associated thread can be retrieved via the ICefv8context.GetTaskRunner() function.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_v8_capi.h">CEF source file: /include/capi/cef_v8_capi.h (cef_v8stack_trace_t))
function IsValid: Boolean; |
|
function GetFrameCount: Integer; |
|
function GetFrame(index: Integer): ICefV8StackFrame; |
property FrameCount : Integer read GetFrameCount; |
|
property Frame[index: Integer]: ICefV8StackFrame read GetFrame; |
function GetFrameCount: Integer; |
|
Returns the number of stack frames. |
function GetFrame(index: Integer): ICefV8StackFrame; |
|
Returns the stack frame at the specified 0-based index. |
property FrameCount : Integer read GetFrameCount; |
|
Returns the number of stack frames. |
property Frame[index: Integer]: ICefV8StackFrame read GetFrame; |
|
Returns the stack frame at the specified 0-based index. |