servoshell: Port desktop servoshell to use delegate API (#35284)

Signed-off-by: Martin Robinson <mrobinson@igalia.com>
Co-authored-by: Delan Azabani <dazabani@igalia.com>
Co-authored-by: Mukilan Thiyagarajan <mukilan@igalia.com>
This commit is contained in:
Martin Robinson 2025-02-06 08:33:31 +01:00 committed by GitHub
parent 6b12499077
commit 5f08e4fa76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 1109 additions and 1258 deletions

View file

@ -5,11 +5,13 @@
//! Contains files specific to the servoshell app for Desktop systems.
pub(crate) mod app;
mod app_state;
pub(crate) mod cli;
mod dialog;
mod egui_glue;
mod embedder;
pub(crate) mod events_loop;
mod gamepad;
pub mod geometry;
mod headed_window;
mod headless_window;
@ -17,5 +19,4 @@ mod keyutils;
mod minibrowser;
mod protocols;
mod tracing;
mod webview;
mod window_trait;