From bea73951db5a758f78842a0056daccba9d89a9c0 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 12 Nov 2019 22:16:08 +0100 Subject: Use `#![register_tool]` instead of `#![register_attr]` CC https://github.com/rust-lang/rust/issues/66079 --- components/script/canvas_state.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components/script/canvas_state.rs') diff --git a/components/script/canvas_state.rs b/components/script/canvas_state.rs index 4b47308fa46..76fd9d12caf 100644 --- a/components/script/canvas_state.rs +++ b/components/script/canvas_state.rs @@ -53,7 +53,7 @@ use std::fmt; use std::str::FromStr; use std::sync::Arc; -#[must_root] +#[unrooted_must_root_lint::must_root] #[derive(Clone, JSTraceable, MallocSizeOf)] #[allow(dead_code)] pub(crate) enum CanvasFillOrStrokeStyle { @@ -62,7 +62,7 @@ pub(crate) enum CanvasFillOrStrokeStyle { Pattern(Dom), } -#[must_root] +#[unrooted_must_root_lint::must_root] #[derive(Clone, JSTraceable, MallocSizeOf)] pub(crate) struct CanvasContextState { global_alpha: f64, @@ -103,7 +103,7 @@ impl CanvasContextState { } } -#[must_root] +#[unrooted_must_root_lint::must_root] #[derive(JSTraceable, MallocSizeOf)] pub(crate) struct CanvasState { #[ignore_malloc_size_of = "Defined in ipc-channel"] -- cgit v1.2.3