1//! Platform-specific rendering surface handle exposed by Chromium (e.g. `CAContext` ID on macOS). 2 3/// Platform-specific handle to the rendering surface exposed by Chromium. 4#[derive(Debug, Clone, PartialEq, Eq)] 5pub enum SurfaceHandle { 6 MacCaContextId(u32), 7}