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
+8 -1
View File
@@ -1,5 +1,12 @@
mod error;
mod host;
#[cfg(feature = "servo-engine")]
mod runtime;
pub use error::ServoHostError;
pub use host::{NavigationRequest, PermissionDecision, PermissionRequest, ServoHost, WebViewState};
pub use host::{
NavigationRequest, PermissionDecision, PermissionRequest, ServoHost, WebViewSnapshot,
WebViewState,
};
#[cfg(feature = "servo-engine")]
pub use runtime::{ServoSurfaceSize, SoftwareServoHost};