Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1309)

Unified Diff: third_party/WebCore/Modules/webaudio/AudioPannerNode.idl

Issue 10825350: Roll IDL to multivm@762 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698