diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-07-19 20:29:22 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-07-20 08:42:40 +0200 |
commit | 789807b7b09e0742a197c98efd2f81b85b751a57 (patch) | |
tree | e093027760cf23719d9f6b3e279eab46e9b3168f /components/style/servo.rs | |
parent | b2a7e4437391abd92486d5bef879fadadabab162 (diff) | |
download | servo-789807b7b09e0742a197c98efd2f81b85b751a57.tar.gz servo-789807b7b09e0742a197c98efd2f81b85b751a57.zip |
Remove the ComputedValue traits and style_struct_traits
Diffstat (limited to 'components/style/servo.rs')
-rw-r--r-- | components/style/servo.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/components/style/servo.rs b/components/style/servo.rs index 8af957e48da..dd75275de70 100644 --- a/components/style/servo.rs +++ b/components/style/servo.rs @@ -6,14 +6,13 @@ use animation; use context; use data; -use properties::ServoComputedValues; use selector_matching; use servo_selector_impl::ServoSelectorImpl; use stylesheets; pub type Stylesheet = stylesheets::Stylesheet<ServoSelectorImpl>; -pub type PrivateStyleData = data::PrivateStyleData<ServoSelectorImpl, ServoComputedValues>; +pub type PrivateStyleData = data::PrivateStyleData<ServoSelectorImpl>; pub type Stylist = selector_matching::Stylist<ServoSelectorImpl>; pub type SharedStyleContext = context::SharedStyleContext<ServoSelectorImpl>; -pub type LocalStyleContextCreationInfo = context::LocalStyleContextCreationInfo<ServoSelectorImpl>; -pub type Animation = animation::Animation<ServoSelectorImpl>; +pub type LocalStyleContextCreationInfo = context::LocalStyleContextCreationInfo; +pub type Animation = animation::Animation; |