cef_begin_tracing

pending, CefBeginTracing will fail and return false (0).

|categories| is a comma-delimited list of category wildcards. A category can have an optional '-' prefix to make it an excluded category. Having both included and excluded categories in the same list is not supported.

version(cef && embedded_cef_bindings)
extern (C)
int
cef_begin_tracing
(
const(cef_string_t)* categories
,
cef_completion_callback_t* callback
)

Examples

- "test_MyTest*" - "test_MyTest*,test_OtherStuff" - "-excluded_category1,-excluded_category2"

This function must be called on the browser process UI thread.

Meta