mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
42 lines
1.1 KiB
Rust
42 lines
1.1 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* 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::{Reflectable, Reflector};
|
|
use dom::bindings::codegen::BlobBinding;
|
|
use script_task::{page_from_context};
|
|
|
|
use js::jsapi::{JSContext, JSObject};
|
|
|
|
pub struct Blob {
|
|
reflector_: Reflector
|
|
}
|
|
|
|
impl Blob {
|
|
pub fn new() -> @mut Blob {
|
|
@mut Blob {
|
|
reflector_: Reflector::new()
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Reflectable for Blob {
|
|
fn reflector<'a>(&'a self) -> &'a Reflector {
|
|
&self.reflector_
|
|
}
|
|
|
|
fn mut_reflector<'a>(&'a mut self) -> &'a mut Reflector {
|
|
&mut self.reflector_
|
|
}
|
|
|
|
fn wrap_object_shared(@mut self, cx: *JSContext, scope: *JSObject) -> *JSObject {
|
|
BlobBinding::Wrap(cx, scope, self)
|
|
}
|
|
|
|
fn GetParentObject(&self, cx: *JSContext) -> Option<@mut Reflectable> {
|
|
let page = page_from_context(cx);
|
|
unsafe {
|
|
Some((*page).frame.get_ref().window as @mut Reflectable)
|
|
}
|
|
}
|
|
}
|