| Index: third_party/WebCore/Modules/webaudio/AudioPannerNode.idl
|
| diff --git a/third_party/WebCore/Modules/webaudio/AudioPannerNode.idl b/third_party/WebCore/Modules/webaudio/AudioPannerNode.idl
|
| index 5061e7825042a98521595bfe723f88458553725d..1a8688f6411b949b966469c3c2a9864bbcb76834 100644
|
| --- a/third_party/WebCore/Modules/webaudio/AudioPannerNode.idl
|
| +++ b/third_party/WebCore/Modules/webaudio/AudioPannerNode.idl
|
| @@ -38,8 +38,7 @@ module audio {
|
| const unsigned short EXPONENTIAL_DISTANCE = 2;
|
|
|
| // Default model for stereo is HRTF
|
| - // FIXME: use unsigned short when glue generation supports it
|
| - attribute unsigned long panningModel
|
| + attribute unsigned short panningModel
|
| setter raises(DOMException);
|
|
|
| // Uses a 3D cartesian coordinate system
|
| @@ -48,7 +47,9 @@ module audio {
|
| void setVelocity(in float x, in float y, in float z);
|
|
|
| // Distance model
|
| - attribute unsigned long distanceModel; // FIXME: use unsigned short when glue generation supports it
|
| + attribute unsigned short distanceModel
|
| + setter raises(DOMException);
|
| +
|
| attribute float refDistance;
|
| attribute float maxDistance;
|
| attribute float rolloffFactor;
|
|
|