diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2015-07-10 18:55:20 -0700 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-07-14 13:45:52 -0700 |
commit | 9ce65c08a51d1a2a62c1d50ca97415f31df2e5fe (patch) | |
tree | 32abb6885680af296405adeeb0901599dd8257a8 /components/util/geometry.rs | |
parent | e84106535175211526729e532058a7514a0de372 (diff) | |
download | servo-9ce65c08a51d1a2a62c1d50ca97415f31df2e5fe.tar.gz servo-9ce65c08a51d1a2a62c1d50ca97415f31df2e5fe.zip |
layout: Make the `LayoutControlChan` use IPC.
Diffstat (limited to 'components/util/geometry.rs')
-rw-r--r-- | components/util/geometry.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/geometry.rs b/components/util/geometry.rs index 5f493f19660..1ed0565e3b4 100644 --- a/components/util/geometry.rs +++ b/components/util/geometry.rs @@ -66,7 +66,7 @@ pub enum PagePx {} // See https://bugzilla.mozilla.org/show_bug.cgi?id=177805 for more info. // // FIXME: Implement Au using Length and ScaleFactor instead of a custom type. -#[derive(Clone, Copy, Hash, PartialEq, PartialOrd, Eq, Ord)] +#[derive(Clone, Copy, Hash, PartialEq, PartialOrd, Eq, Ord, Deserialize, Serialize)] pub struct Au(pub i32); impl Default for Au { |