Only export an explicit public API in the style crate

I.e. make every module private by default.
This commit is contained in:
Simon Sapin 2013-10-24 16:09:46 +02:00
parent 23e3757db6
commit 7a48cb6815
8 changed files with 39 additions and 43 deletions

View file

@ -23,8 +23,7 @@ use std::cast::transmute;
use std::unstable::raw::Box;
use extra::arc::Arc;
use js::jsapi::{JSObject, JSContext};
use style::ComputedValues;
use style::properties::PropertyDeclaration;
use style::{ComputedValues, PropertyDeclaration};
use servo_util::tree::{TreeNode, TreeNodeRef, TreeNodeRefAsElement};
use servo_util::range::Range;
use gfx::display_list::DisplayList;