diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2017-04-30 15:18:01 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2017-05-02 17:35:44 -0700 |
commit | d78ca4c4f9f1866204cbb420b284be1cbc137712 (patch) | |
tree | 49c5017f957b030c6c38a2892993ec5e798a2e6e /components/style/keyframes.rs | |
parent | 6d8fc600b88dc2f393d7ff3e57d140891343c988 (diff) | |
download | servo-d78ca4c4f9f1866204cbb420b284be1cbc137712.tar.gz servo-d78ca4c4f9f1866204cbb420b284be1cbc137712.zip |
Use StyleArc in the style system.
MozReview-Commit-ID: flF0fv9E9M
Diffstat (limited to 'components/style/keyframes.rs')
-rw-r--r-- | components/style/keyframes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/keyframes.rs b/components/style/keyframes.rs index 8113c06bb6c..3a80320bb52 100644 --- a/components/style/keyframes.rs +++ b/components/style/keyframes.rs @@ -17,8 +17,8 @@ use properties::animated_properties::TransitionProperty; use properties::longhands::transition_timing_function::single_value::SpecifiedValue as SpecifiedTimingFunction; use shared_lock::{SharedRwLock, SharedRwLockReadGuard, Locked, ToCssWithGuard}; use std::fmt; -use std::sync::Arc; use style_traits::ToCss; +use stylearc::Arc; use stylesheets::{CssRuleType, Stylesheet, VendorPrefix}; /// A number from 0 to 1, indicating the percentage of the animation when this |