diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2017-07-18 12:51:57 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2017-07-18 17:34:57 +0200 |
commit | 655c842d2e0e61315ce1e745da16f7ab6e5b8766 (patch) | |
tree | 857df9e1ee70b0fc70ca62c0acbe8402976e7af4 /components/script_layout_interface/wrapper_traits.rs | |
parent | b113d549870832676433eb9112478baf5908e1a8 (diff) | |
download | servo-655c842d2e0e61315ce1e745da16f7ab6e5b8766.tar.gz servo-655c842d2e0e61315ce1e745da16f7ab6e5b8766.zip |
style: Cleanup most of the Inner mess.
MozReview-Commit-ID: Ieg2GJT0yUl
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 67506a154d4..a32a6e6b99c 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() } |