diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2015-09-28 16:53:00 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2015-10-01 07:16:11 +1000 |
commit | 339a3f869b539ae6da49f5d34568789d0abf3e00 (patch) | |
tree | 06790c2e03a77bdbb988361dcf8e0b34b97dec4b /components/gfx/platform/macos | |
parent | fb6d0946cb3bac713bc20794f17a40fa7a12bc00 (diff) | |
download | servo-339a3f869b539ae6da49f5d34568789d0abf3e00.tar.gz servo-339a3f869b539ae6da49f5d34568789d0abf3e00.zip |
Split Au type into separate crate, with minimal dependencies.
Diffstat (limited to 'components/gfx/platform/macos')
-rw-r--r-- | components/gfx/platform/macos/font.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/platform/macos/font.rs b/components/gfx/platform/macos/font.rs index 0cf95aa6c3f..f316dd4d985 100644 --- a/components/gfx/platform/macos/font.rs +++ b/components/gfx/platform/macos/font.rs @@ -8,6 +8,7 @@ extern crate core_foundation; extern crate core_graphics; extern crate core_text; +use app_units::Au; use core_foundation::base::CFIndex; use core_foundation::data::CFData; use core_foundation::string::UniChar; @@ -25,7 +26,6 @@ use std::ptr; use std::sync::Arc; use style::computed_values::{font_stretch, font_weight}; use text::glyph::GlyphId; -use util::geometry::Au; pub struct FontTable { data: CFData, |