@@ -11,32 +11,27 @@ pub mod recovery;
1111pub mod workspace;
1212pub use state:: * ;
1313
14-
1514use chrono:: Utc ;
16- use serde:: { Deserialize , Serialize } ;
17- use eframe:: egui:: Color32 ;
1815use std:: collections:: { HashMap , VecDeque } ;
19- use std:: path:: PathBuf ;
2016use std:: sync:: { Arc , RwLock } ;
2117use std:: time:: { Duration , Instant } ;
2218
2319use crate :: automation:: {
2420 AutomationCapabilityEvent , AutomationCommand , AutomationHandle , AutomationNavigationEvent ,
25- AutomationActivityStatus , drain_automation_commands,
21+ drain_automation_commands,
2622} ;
27- use crate :: cache:: { AssetQuery , AssetStore } ;
23+ use crate :: cache:: AssetStore ;
2824use crate :: commands:: { AppCommand , dispatch_command} ;
2925use crate :: config:: BrazenConfig ;
3026use crate :: engine:: {
31- AlphaMode , BrowserEngine , BrowserTab , DialogKind , EngineEvent , EngineFactory , EngineLoadStatus ,
32- EngineStatus , FocusState , InputEvent , RenderSurfaceHandle , RenderSurfaceMetadata ,
33- SecurityWarningKind , WindowDisposition ,
27+ AlphaMode , BrowserEngine , EngineFactory , EngineLoadStatus , FocusState ,
28+ RenderSurfaceHandle , RenderSurfaceMetadata , WindowDisposition ,
3429} ;
3530use crate :: navigation:: { normalize_url_input, resolve_startup_url} ;
3631use crate :: permissions:: Capability ;
3732use crate :: platform_paths:: RuntimePaths ;
3833use crate :: rendering:: { normalize_pixels, probe_frame_stats} ;
39- use crate :: session:: { NavigationEntry , SessionSnapshot , load_session} ;
34+ use crate :: session:: { SessionSnapshot , load_session} ;
4035use crate :: profile_db:: ProfileDb ;
4136use tokio:: sync:: mpsc;
4237
@@ -724,7 +719,3 @@ impl BrazenApp {
724719#[ cfg( test) ]
725720mod tests;
726721
727-
728- fn extract_entities ( html : & str ) -> Vec < ExtractedEntity > {
729- crate :: extraction:: extract_entities ( html)
730- }
0 commit comments