pub type cef_accessibility_handler_t = _cef_accessibility_handler_t;Expand description
Implement this structure to receive accessibility notification when accessibility events have been registered. The functions of this structure will be called on the UI thread.
NOTE: This struct is allocated client-side.
Aliased Type§
#[repr(C)]pub struct cef_accessibility_handler_t {
pub base: _cef_base_ref_counted_t,
pub on_accessibility_tree_change: Option<unsafe extern "C" fn(*mut _cef_accessibility_handler_t, *mut _cef_value_t)>,
pub on_accessibility_location_change: Option<unsafe extern "C" fn(*mut _cef_accessibility_handler_t, *mut _cef_value_t)>,
}Fields§
§base: _cef_base_ref_counted_tBase structure.
on_accessibility_tree_change: Option<unsafe extern "C" fn(*mut _cef_accessibility_handler_t, *mut _cef_value_t)>Called after renderer process sends accessibility tree changes to the browser process.
on_accessibility_location_change: Option<unsafe extern "C" fn(*mut _cef_accessibility_handler_t, *mut _cef_value_t)>Called after renderer process sends accessibility location changes to the browser process.