aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/blob.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/script/dom/blob.rs')
-rw-r--r--src/components/script/dom/blob.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/script/dom/blob.rs b/src/components/script/dom/blob.rs
index ccac0a702af..3d17c44bc26 100644
--- a/src/components/script/dom/blob.rs
+++ b/src/components/script/dom/blob.rs
@@ -2,7 +2,7 @@
* 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::{Reflector, BindingObject, Reflectable};
+use dom::bindings::utils::{Reflectable, Reflector};
use dom::bindings::codegen::BlobBinding;
use script_task::{page_from_context};
@@ -32,9 +32,7 @@ impl Reflectable for Blob {
fn wrap_object_shared(@mut self, cx: *JSContext, scope: *JSObject) -> *JSObject {
BlobBinding::Wrap(cx, scope, self)
}
-}
-impl BindingObject for Blob {
fn GetParentObject(&self, cx: *JSContext) -> Option<@mut Reflectable> {
let page = page_from_context(cx);
unsafe {