aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/parser.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-10-13 16:59:10 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-10-14 00:44:06 +0530
commit2bde9462b1d5ca98f2da8b05dad5d377ab93e7ed (patch)
tree6c462e5cbfa10c685cec02669f339f9cdab02514 /components/style/parser.rs
parentdc5dc5e614e3e5b26081c44e1bb348f0f07dae5e (diff)
downloadservo-2bde9462b1d5ca98f2da8b05dad5d377ab93e7ed.tar.gz
servo-2bde9462b1d5ca98f2da8b05dad5d377ab93e7ed.zip
Add safer bindings for RefPtr
Diffstat (limited to 'components/style/parser.rs')
-rw-r--r--components/style/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/parser.rs b/components/style/parser.rs
index db281ec24e2..1cf46a80d09 100644
--- a/components/style/parser.rs
+++ b/components/style/parser.rs
@@ -7,7 +7,7 @@
use cssparser::{Parser, SourcePosition};
use error_reporting::ParseErrorReporter;
#[cfg(feature = "gecko")]
-use gecko_bindings::ptr::{GeckoArcPrincipal, GeckoArcURI};
+use gecko_bindings::sugar::refptr::{GeckoArcPrincipal, GeckoArcURI};
use selector_impl::TheSelectorImpl;
use selectors::parser::ParserContext as SelectorParserContext;
use stylesheets::Origin;