Initialize Rust GPUI browser shell

This commit is contained in:
2026-05-07 18:27:15 -04:00
commit d9a27f3dc4
41 changed files with 11573 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
use ely_domain::WebViewId;
use thiserror::Error;
#[derive(Clone, Debug, Error, Eq, PartialEq)]
pub enum ServoHostError {
#[error("webview not found: {id}")]
WebViewNotFound { id: WebViewId },
#[error("permission request missing profile context")]
MissingProfileContext,
}