diff options
author | Saurabh Anand <saurabhanandiit@gmail.com> | 2014-02-27 14:47:33 +0530 |
---|---|---|
committer | Saurabh Anand <saurabhanandiit@gmail.com> | 2014-02-28 13:32:00 +0530 |
commit | 5c5cb3e9a724508956791c8b3089fd2c40e7fe2d (patch) | |
tree | c74e56e1cf9d90921d9dd453ba52d5d618d7d132 /src/components/script/dom/formdata.rs | |
parent | 82b74a373a404c334ae711ec78dd4d06690f2cbb (diff) | |
download | servo-5c5cb3e9a724508956791c8b3089fd2c40e7fe2d.tar.gz servo-5c5cb3e9a724508956791c8b3089fd2c40e7fe2d.zip |
Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)
Diffstat (limited to 'src/components/script/dom/formdata.rs')
-rw-r--r-- | src/components/script/dom/formdata.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/script/dom/formdata.rs b/src/components/script/dom/formdata.rs index 3beb7e996aa..011722ea275 100644 --- a/src/components/script/dom/formdata.rs +++ b/src/components/script/dom/formdata.rs @@ -2,7 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use dom::bindings::utils::{Fallible, Reflectable, Reflector, reflect_dom_object}; +use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; +use dom::bindings::error::{Fallible}; use dom::bindings::codegen::FormDataBinding; use dom::bindings::js::JS; use dom::blob::Blob; |