Index: modules/webaudio/AnalyserNode.idl |
diff --git a/modules/webaudio/AnalyserNode.idl b/modules/webaudio/AnalyserNode.idl |
index f179f5e5ebef179b2618188b56de6ab659c07853..f3add662997d008ed25cac7e8e65b417a5771260 100644 |
--- a/modules/webaudio/AnalyserNode.idl |
+++ b/modules/webaudio/AnalyserNode.idl |
@@ -25,15 +25,15 @@ |
[ |
Conditional=WEB_AUDIO |
] interface AnalyserNode : AudioNode { |
- [SetterRaisesException] attribute unsigned long fftSize; |
+ [RaisesException=Setter] attribute unsigned long fftSize; |
readonly attribute unsigned long frequencyBinCount; |
// minDecibels / maxDecibels represent the range to scale the FFT analysis data for conversion to unsigned byte values. |
- [SetterRaisesException] attribute float minDecibels; |
- [SetterRaisesException] attribute float maxDecibels; |
+ [RaisesException=Setter] attribute float minDecibels; |
+ [RaisesException=Setter] attribute float maxDecibels; |
// A value from 0.0 -> 1.0 where 0.0 represents no time averaging with the last analysis frame. |
- [SetterRaisesException] attribute float smoothingTimeConstant; |
+ [RaisesException=Setter] attribute float smoothingTimeConstant; |
// Copies the current frequency data into the passed array. |
// If the array has fewer elements than the frequencyBinCount, the excess elements will be dropped. |