diff options
Diffstat (limited to 'components/script/dom/channelmergernode.rs')
-rw-r--r-- | components/script/dom/channelmergernode.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/components/script/dom/channelmergernode.rs b/components/script/dom/channelmergernode.rs index 33f00927909..3602b5a7139 100644 --- a/components/script/dom/channelmergernode.rs +++ b/components/script/dom/channelmergernode.rs @@ -2,14 +2,14 @@ * 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::audionode::{AudioNode, MAX_CHANNEL_COUNT}; -use dom::baseaudiocontext::BaseAudioContext; -use dom::bindings::codegen::Bindings::AudioNodeBinding::{ChannelCountMode, ChannelInterpretation}; -use dom::bindings::codegen::Bindings::ChannelMergerNodeBinding::{self, ChannelMergerOptions}; -use dom::bindings::error::{Error, Fallible}; -use dom::bindings::reflector::reflect_dom_object; -use dom::bindings::root::DomRoot; -use dom::window::Window; +use crate::dom::audionode::{AudioNode, MAX_CHANNEL_COUNT}; +use crate::dom::baseaudiocontext::BaseAudioContext; +use crate::dom::bindings::codegen::Bindings::AudioNodeBinding::{ChannelCountMode, ChannelInterpretation}; +use crate::dom::bindings::codegen::Bindings::ChannelMergerNodeBinding::{self, ChannelMergerOptions}; +use crate::dom::bindings::error::{Error, Fallible}; +use crate::dom::bindings::reflector::reflect_dom_object; +use crate::dom::bindings::root::DomRoot; +use crate::dom::window::Window; use dom_struct::dom_struct; use servo_media::audio::channel_node::ChannelNodeOptions; use servo_media::audio::node::AudioNodeInit; |