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_v8_stack_trace_t))
| Public | function IsValid: Boolean; |
| Public | function GetFrameCount: Integer; |
| Public | function GetFrame(index: Integer): ICefV8StackFrame; |
| Public | property FrameCount : Integer read GetFrameCount; |
| Public | property Frame[index: Integer]: ICefV8StackFrame read GetFrame; |
| Public | function IsValid: Boolean; |
|
Returns true (1) if the underlying handle is valid and it can be accessed on the current thread. Do not call any other functions if this function returns false (0). Attributes
| |
| Public | function GetFrameCount: Integer; |
|
Returns the number of stack frames. | |
| Public | function GetFrame(index: Integer): ICefV8StackFrame; |
|
Returns the stack frame at the specified 0-based index. | |
| Public | property FrameCount : Integer read GetFrameCount; |
|
Returns the number of stack frames. | |
| Public | property Frame[index: Integer]: ICefV8StackFrame read GetFrame; |
|
Returns the stack frame at the specified 0-based index. | |