diff options
Diffstat (limited to 'components/layout/context.rs')
-rw-r--r-- | components/layout/context.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/layout/context.rs b/components/layout/context.rs index 5a7bbdfed8f..eb5c19cc596 100644 --- a/components/layout/context.rs +++ b/components/layout/context.rs @@ -105,7 +105,7 @@ pub struct SharedLayoutContext { /// A channel on which new animations that have been triggered by style recalculation can be /// sent. - pub new_animations_sender: Sender<Animation>, + pub new_animations_sender: Mutex<Sender<Animation>>, /// A channel to send canvas renderers to paint task, in order to correctly paint the layers pub canvas_layers_sender: Sender<(LayerId, IpcSender<CanvasMsg>)>, @@ -123,7 +123,6 @@ pub struct SharedLayoutContext { // FIXME(#6569) This implementations is unsound: // XXX UNSOUND!!! for image_cache_task // XXX UNSOUND!!! for stylist -// XXX UNSOUND!!! for new_animations_sender // XXX UNSOUND!!! for canvas_layers_sender #[allow(unsafe_code)] unsafe impl Sync for SharedLayoutContext {} |