diff options
author | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2018-07-12 17:57:08 +0200 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2018-07-30 14:21:48 +0200 |
commit | 21cb160be3d2042c5d2100f5ab50f500500a510e (patch) | |
tree | de6132c6320eb0331b62d3d6d15f527025a0dacf /components/script/dom/gainnode.rs | |
parent | f0a691e474cc328b80bc249c62b49702b419d191 (diff) | |
download | servo-21cb160be3d2042c5d2100f5ab50f500500a510e.tar.gz servo-21cb160be3d2042c5d2100f5ab50f500500a510e.zip |
test-tidy fixes
Diffstat (limited to 'components/script/dom/gainnode.rs')
-rw-r--r-- | components/script/dom/gainnode.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/components/script/dom/gainnode.rs b/components/script/dom/gainnode.rs index e9423c81960..fe7ac041bf9 100644 --- a/components/script/dom/gainnode.rs +++ b/components/script/dom/gainnode.rs @@ -1,13 +1,13 @@ /* 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 + * 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; use dom::audioparam::AudioParam; use dom::baseaudiocontext::BaseAudioContext; -use dom::bindings::codegen::Bindings::AudioParamBinding::AutomationRate; -use dom::bindings::codegen::Bindings::AudioNodeBinding::AudioNodeOptions; use dom::bindings::codegen::Bindings::AudioNodeBinding::{ChannelCountMode, ChannelInterpretation}; +use dom::bindings::codegen::Bindings::AudioNodeBinding::AudioNodeOptions; +use dom::bindings::codegen::Bindings::AudioParamBinding::AutomationRate; use dom::bindings::codegen::Bindings::GainNodeBinding::{self, GainNodeMethods, GainOptions}; use dom::bindings::error::Fallible; use dom::bindings::reflector::reflect_dom_object; @@ -80,6 +80,7 @@ impl GainNode { } impl GainNodeMethods for GainNode { + // https://webaudio.github.io/web-audio-api/#dom-gainnode-gain fn Gain(&self) -> DomRoot<AudioParam> { DomRoot::from_ref(&self.gain) } |