aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/use_counters/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/use_counters/mod.rs')
-rw-r--r--components/style/use_counters/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/style/use_counters/mod.rs b/components/style/use_counters/mod.rs
index 49c77ae714d..2c380d5450f 100644
--- a/components/style/use_counters/mod.rs
+++ b/components/style/use_counters/mod.rs
@@ -5,8 +5,8 @@
//! Various stuff for CSS property use counters.
#[cfg(feature = "gecko")]
-use gecko_bindings::sugar::ownership::{HasBoxFFI, HasFFI, HasSimpleFFI};
-use properties::{NonCustomPropertyId, NON_CUSTOM_PROPERTY_ID_COUNT};
+use crate::gecko_bindings::sugar::ownership::{HasBoxFFI, HasFFI, HasSimpleFFI};
+use crate::properties::{NonCustomPropertyId, NON_CUSTOM_PROPERTY_ID_COUNT};
use std::cell::Cell;
#[cfg(target_pointer_width = "64")]
@@ -78,7 +78,7 @@ impl UseCounters {
#[cfg(feature = "gecko")]
unsafe impl HasFFI for UseCounters {
- type FFIType = ::gecko_bindings::structs::StyleUseCounters;
+ type FFIType = crate::gecko_bindings::structs::StyleUseCounters;
}
#[cfg(feature = "gecko")]