diff options
author | Josh Matthews <josh@joshmatthews.net> | 2023-05-28 22:43:55 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2023-05-28 23:23:12 -0400 |
commit | dbff26bce05d404027ef5bbfd85fb5995e4726bc (patch) | |
tree | 6ebb631eef396c2f387fe8269b0d59bde0dccae2 /components/script/dom/messagechannel.rs | |
parent | d9600ff50f3c1bdd8c44e2dfc15a18416d80cb82 (diff) | |
download | servo-dbff26bce05d404027ef5bbfd85fb5995e4726bc.tar.gz servo-dbff26bce05d404027ef5bbfd85fb5995e4726bc.zip |
Support arbitrary protos when wrapping DOM objects with constructors.
Diffstat (limited to 'components/script/dom/messagechannel.rs')
-rw-r--r-- | components/script/dom/messagechannel.rs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/components/script/dom/messagechannel.rs b/components/script/dom/messagechannel.rs index 3075dac3088..f3df61924a5 100644 --- a/components/script/dom/messagechannel.rs +++ b/components/script/dom/messagechannel.rs @@ -3,11 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use crate::dom::bindings::codegen::Bindings::MessageChannelBinding::MessageChannelMethods; -use crate::dom::bindings::reflector::{reflect_dom_object, Reflector}; +use crate::dom::bindings::reflector::{reflect_dom_object2, Reflector}; use crate::dom::bindings::root::{Dom, DomRoot}; use crate::dom::globalscope::GlobalScope; use crate::dom::messageport::MessagePort; use dom_struct::dom_struct; +use js::rust::HandleObject; #[dom_struct] pub struct MessageChannel { @@ -19,12 +20,12 @@ pub struct MessageChannel { impl MessageChannel { /// <https://html.spec.whatwg.org/multipage/#dom-messagechannel> #[allow(non_snake_case)] - pub fn Constructor(global: &GlobalScope) -> DomRoot<MessageChannel> { - MessageChannel::new(global) + pub fn Constructor(global: &GlobalScope, proto: Option<HandleObject>) -> DomRoot<MessageChannel> { + MessageChannel::new(global, proto) } /// <https://html.spec.whatwg.org/multipage/#dom-messagechannel> - pub fn new(incumbent: &GlobalScope) -> DomRoot<MessageChannel> { + fn new(incumbent: &GlobalScope, proto: Option<HandleObject>) -> DomRoot<MessageChannel> { // Step 1 let port1 = MessagePort::new(&incumbent); @@ -41,9 +42,10 @@ impl MessageChannel { ); // Steps 4-6 - reflect_dom_object( + reflect_dom_object2( Box::new(MessageChannel::new_inherited(&*port1, &*port2)), incumbent, + proto, ) } |