diff options
author | Manish Goregaokar <manishearth@gmail.com> | 2017-07-17 11:42:00 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-07-17 18:03:23 -0700 |
commit | 89930e75654f2942e39e1f1f93f1525e40488fb0 (patch) | |
tree | 44bcdfb81968951752ce822cf027e4e9ed6a34a3 /components/script_layout_interface/wrapper_traits.rs | |
parent | 74519cc1a7bdc5ff31921fc2e59b3cb697774efa (diff) | |
download | servo-89930e75654f2942e39e1f1f93f1525e40488fb0.tar.gz servo-89930e75654f2942e39e1f1f93f1525e40488fb0.zip |
stylo: Switch Gecko over to ServoStyleContext
Diffstat (limited to 'components/script_layout_interface/wrapper_traits.rs')
-rw-r--r-- | components/script_layout_interface/wrapper_traits.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script_layout_interface/wrapper_traits.rs b/components/script_layout_interface/wrapper_traits.rs index a32a6e6b99c..67506a154d4 100644 --- a/components/script_layout_interface/wrapper_traits.rs +++ b/components/script_layout_interface/wrapper_traits.rs @@ -416,7 +416,7 @@ pub trait ThreadSafeLayoutElement: Clone + Copy + Sized + Debug + &style_pseudo, Some(data.styles.primary()), CascadeFlags::empty(), - &ServoMetricsProvider) + &ServoMetricsProvider, (), ()) .clone() } PseudoElementCascadeType::Lazy => { @@ -428,7 +428,7 @@ pub trait ThreadSafeLayoutElement: Clone + Copy + Sized + Debug + RuleInclusion::All, data.styles.primary(), /* is_probe = */ false, - &ServoMetricsProvider) + &ServoMetricsProvider, (), ()) .unwrap() .clone() } |