diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2015-11-06 09:46:52 -0600 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2015-11-06 17:23:15 -0600 |
commit | 4aa6a76f5714fa945f1883ae2d658750cc91d6e3 (patch) | |
tree | 6f847b51c20df0c927d4b44eab9e4e35373d43ff /components/util/mem.rs | |
parent | a0221b91268307b1c2690241a4d24816471c915e (diff) | |
download | servo-4aa6a76f5714fa945f1883ae2d658750cc91d6e3.tar.gz servo-4aa6a76f5714fa945f1883ae2d658750cc91d6e3.zip |
Made QualName traceable by JS.
Diffstat (limited to 'components/util/mem.rs')
-rw-r--r-- | components/util/mem.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/util/mem.rs b/components/util/mem.rs index e58ae1b3eb4..c5c242de825 100644 --- a/components/util/mem.rs +++ b/components/util/mem.rs @@ -37,7 +37,7 @@ use std::result::Result; use std::sync::Arc; use str::{DOMString, LengthOrPercentageOrAuto}; use string_cache::atom::Atom; -use string_cache::namespace::Namespace; +use string_cache::namespace::{QualName, Namespace}; use url; extern { @@ -420,7 +420,7 @@ known_heap_size!(0, bool, f32, f64); known_heap_size!(0, Rect<T>, Point2D<T>, Size2D<T>, Matrix2D<T>, SideOffsets2D<T>, Range<T>); known_heap_size!(0, Length<T, U>, ScaleFactor<T, U, V>); -known_heap_size!(0, Au, WritingMode, CSSParserColor, Color, RGBA, Cursor, Matrix4, Atom, Namespace); +known_heap_size!(0, Au, WritingMode, CSSParserColor, Color, RGBA, Cursor, Matrix4, QualName, Atom, Namespace); known_heap_size!(0, JSVal, PagePx, ViewportPx, DevicePixel, QuirksMode, OsRng, RawStatus); known_heap_size!(0, TokenSerializationType, LengthOrPercentageOrAuto); |