Fix Issues 17338 and 17337: AudioGain interface is not needed
authorcrogers
Tue, 02 Oct 2012 12:28:55 -0700
changeset 168 1357959b0188
parent 167 144acfdb1e13
child 169 24bbac1a495c
Fix Issues 17338 and 17337: AudioGain interface is not needed
webaudio/specification.html
--- a/webaudio/specification.html	Mon Oct 01 16:33:12 2012 -0700
+++ b/webaudio/specification.html	Tue Oct 02 12:28:55 2012 -0700
@@ -170,7 +170,6 @@
           <li><a href="#attributes-AudioParam">4.5.1. Attributes</a></li>
           <li><a href="#methodsandparams-AudioParam">4.5.2. Methods and
             Parameters</a></li>
-          <li><a href="#AudioGain-section">4.6. AudioGain</a></li>
         </ul>
       </li>
       <li><a href="#AudioGainNode">4.7. The AudioGainNode Interface</a> 
@@ -1588,33 +1587,6 @@
 </div>
 </div>
 
-
-
-<div id="AudioGain-section-section" class="section">
-<h3 id="AudioGain-section">4.6. AudioGain</h3>
-
-<p>This interface is a particular type of <code>AudioParam</code> which
-specifically controls the gain (volume) of some aspect of the audio processing.
-The unit type is "linear gain". The nominal <code>minValue</code> is 0, but may be
-set negative for phase inversion.  The nominal <code>maxValue</code> is 1, but higher values are allowed (no
-exception thrown). </p>
-
-<div class="block">
-
-<div class="blockTitleDiv">
-<span class="blockTitle">Web IDL</span></div>
-
-<div class="blockContent">
-<pre class="code"><code class="idl-code">
-
-interface <dfn id="dfn-AudioGain">AudioGain</dfn> : AudioParam {
-
-};
-</code></pre>
-</div>
-</div>
-</div>
-
 <div id="AudioGainNode-section" class="section">
 <h2 id="AudioGainNode">4.7. The AudioGainNode Interface</h2>
 
@@ -1672,10 +1644,10 @@
 <h3 id="attributes-AudioGainNode">4.7.1. Attributes</h3>
 <dl>
   <dt id="dfn-gain"><code>gain</code></dt>
-    <dd><p>An AudioGain object representing the amount of gain to apply. The
-      default value (<code>gain.value</code>) is 1 (no gain change). See <a
-      href="#AudioGain-section"><code>AudioGain</code></a> for more
-      information.  This parameter is <em>a-rate</em> </p>
+    <dd><p>An AudioGain object representing the amount of gain to apply. Its
+      default <code>value</code> is 1 (no gain change). The nominal <code>minValue</code> is 0, but may be
+      set negative for phase inversion.  The nominal <code>maxValue</code> is 1, but higher values are allowed (no
+      exception thrown).This parameter is <em>a-rate</em> </p>
     </dd>
 </dl>
 </div>