aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/channelsplitternode.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/channelsplitternode.rs')
-rw-r--r--components/script/dom/channelsplitternode.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/channelsplitternode.rs b/components/script/dom/channelsplitternode.rs
index 91b885b9ed7..29d7a92f94f 100644
--- a/components/script/dom/channelsplitternode.rs
+++ b/components/script/dom/channelsplitternode.rs
@@ -63,8 +63,9 @@ impl ChannelSplitterNode {
window: &Window,
context: &BaseAudioContext,
options: &ChannelSplitterOptions,
+ can_gc: CanGc,
) -> Fallible<DomRoot<ChannelSplitterNode>> {
- Self::new_with_proto(window, None, context, options, CanGc::note())
+ Self::new_with_proto(window, None, context, options, can_gc)
}
#[allow(crown::unrooted_must_root)]