diff options
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, |