diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-11-25 17:18:04 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-11-27 20:47:53 -0500 |
commit | 564c16d75499ae45b3945f487e49587c6fd662c7 (patch) | |
tree | f650d6eb383e95133a19baec32016a5b122203a3 /components/script/script_thread.rs | |
parent | a922c497fade0250123b86d7535838c9a8d3b0af (diff) | |
download | servo-564c16d75499ae45b3945f487e49587c6fd662c7.tar.gz servo-564c16d75499ae45b3945f487e49587c6fd662c7.zip |
Use non-IPC webrender API over explicit IPC channels.
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 99fca0e5608..c01ad08220c 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -143,7 +143,7 @@ use script_traits::{MediaSessionActionType, MouseButton, MouseEventType, NewLayo use script_traits::{Painter, ProgressiveWebMetricType, ScriptMsg, ScriptThreadFactory}; use script_traits::{ScriptToConstellationChan, TimerSchedulerMsg}; use script_traits::{TouchEventType, TouchId, UntrustedNodeAddress, WheelDelta}; -use script_traits::{UpdatePipelineIdReason, WindowSizeData, WindowSizeType}; +use script_traits::{UpdatePipelineIdReason, WebrenderIpcSender, WindowSizeData, WindowSizeType}; use servo_atoms::Atom; use servo_url::{ImmutableOrigin, MutableOrigin, ServoUrl}; use std::borrow::Cow; @@ -166,7 +166,7 @@ use time::{at_utc, get_time, precise_time_ns, Timespec}; use url::Position; use webgpu::WebGPU; use webrender_api::units::LayoutPixel; -use webrender_api::{DocumentId, RenderApiSender}; +use webrender_api::DocumentId; use webvr_traits::{WebVREvent, WebVRMsg}; pub type ImageCacheMsg = (PipelineId, PendingImageResponse); @@ -657,7 +657,7 @@ pub struct ScriptThread { webrender_document: DocumentId, /// Webrender API sender. - webrender_api_sender: RenderApiSender, + webrender_api_sender: WebrenderIpcSender, /// Periodically print out on which events script threads spend their processing time. profile_script_events: bool, |