cef_media_route_create_callback_t

Callback structure for cef_media_router_t::CreateRoute. The functions of this structure will be called on the browser process UI thread.

Members

Variables

base
cef_base_ref_counted_t base;

Base structure.

on_media_route_create_finished
void function(cef_media_route_create_callback_t* self, cef_media_route_create_result_t result, const(cef_string_t)* error, cef_media_route_t* route) nothrow on_media_route_create_finished;

Method that will be executed when the route creation has finished. |result| will be CEF_MRCR_OK if the route creation succeeded. |error| will be a description of the error if the route creation failed. |route| is the resulting route, or NULL if the route creation failed.

Meta