stylo: Replace all hashtable collections with ones from style::hash

This commit is contained in:
Manish Goregaokar 2017-08-31 15:28:01 -07:00
parent fae5e10643
commit 5cd296a264
No known key found for this signature in database
GPG key ID: 3BBF4D3E2EF79F98
9 changed files with 29 additions and 14 deletions

View file

@ -31,7 +31,7 @@ use selectors::parser::SelectorParseError;
use smallvec::SmallVec;
use std::borrow::Cow;
use std::cmp;
#[cfg(feature = "gecko")] use fnv::FnvHashMap;
#[cfg(feature = "gecko")] use hash::FnvHashMap;
use style_traits::ParseError;
use super::ComputedValues;
#[cfg(feature = "gecko")]

View file

@ -416,7 +416,7 @@ ${helpers.predefined_type("object-position",
products="gecko"
animation_value_type="discrete"
boxed="True">
use std::collections::HashMap;
use hash::HashMap;
use std::fmt;
use std::ops::Range;
use str::HTML_SPACE_CHARACTERS;

View file

@ -13,7 +13,7 @@
#[cfg(feature = "servo")] use app_units::Au;
use servo_arc::{Arc, UniqueArc};
use std::borrow::Cow;
use std::collections::HashSet;
use hash::HashSet;
use std::{fmt, mem, ops};
#[cfg(feature = "gecko")] use std::ptr;