mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
script: Move the FontContext
to Window
(#34845)
This will allow using layout's `FontContext` in `Window` letting script manage font selection and download. Signed-off-by: Martin Robinson <mrobinson@igalia.com> Co-authored-by: Mukilan Thiyagarajan <mukilan@igalia.com>
This commit is contained in:
parent
fe8a22b72c
commit
7142a96d36
6 changed files with 61 additions and 45 deletions
|
@ -24,13 +24,12 @@ use canvas_traits::canvas::{CanvasId, CanvasMsg};
|
|||
use euclid::default::{Point2D, Rect};
|
||||
use euclid::Size2D;
|
||||
use fnv::FnvHashMap;
|
||||
use fonts::SystemFontServiceProxy;
|
||||
use fonts::{FontContext, SystemFontServiceProxy};
|
||||
use ipc_channel::ipc::IpcSender;
|
||||
use libc::c_void;
|
||||
use malloc_size_of_derive::MallocSizeOf;
|
||||
use metrics::PaintTimeMetrics;
|
||||
use net_traits::image_cache::{ImageCache, PendingImageId};
|
||||
use net_traits::ResourceThreads;
|
||||
use profile_traits::mem::Report;
|
||||
use profile_traits::time;
|
||||
use script_traits::{
|
||||
|
@ -188,8 +187,7 @@ pub struct LayoutConfig {
|
|||
pub constellation_chan: IpcSender<LayoutMsg>,
|
||||
pub script_chan: IpcSender<ConstellationControlMsg>,
|
||||
pub image_cache: Arc<dyn ImageCache>,
|
||||
pub resource_threads: ResourceThreads,
|
||||
pub system_font_service: Arc<SystemFontServiceProxy>,
|
||||
pub font_context: Arc<FontContext>,
|
||||
pub time_profiler_chan: time::ProfilerChan,
|
||||
pub compositor_api: CrossProcessCompositorApi,
|
||||
pub paint_time_metrics: PaintTimeMetrics,
|
||||
|
@ -205,9 +203,6 @@ pub trait Layout {
|
|||
/// resolve font metrics.
|
||||
fn device(&self) -> &Device;
|
||||
|
||||
/// Whether or not this layout is waiting for fonts from loaded stylesheets to finish loading.
|
||||
fn waiting_for_web_fonts_to_load(&self) -> bool;
|
||||
|
||||
/// The currently laid out Epoch that this Layout has finished.
|
||||
fn current_epoch(&self) -> Epoch;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue