Add Servo engine host runtime

This commit is contained in:
2026-05-07 18:47:37 -04:00
parent 8f0f577928
commit b787486f8e
11 changed files with 6138 additions and 106 deletions
+12
View File
@@ -6,6 +6,18 @@ pub enum ServoHostError {
#[error("webview not found: {id}")]
WebViewNotFound { id: WebViewId },
#[error("invalid navigation url: {value}")]
InvalidNavigationUrl { value: String },
#[error("permission request missing profile context")]
MissingProfileContext,
#[error("servo runtime is already started in this process")]
RuntimeAlreadyStarted,
#[error("servo rendering context is unavailable")]
RenderingContextUnavailable,
#[error("servo rendering context could not be made current")]
RenderingContextNotCurrent,
}