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

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

Issue 10769002: Roll IDL to multivm@683 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix notifications path in fremontcut. Created 8 years, 5 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
« no previous file with comments | « third_party/WebCore/Modules/webaudio/AudioContext.idl ('k') | third_party/WebCore/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/Modules/webaudio/AudioNode.idl
diff --git a/third_party/WebCore/Modules/webaudio/AudioNode.idl b/third_party/WebCore/Modules/webaudio/AudioNode.idl
index 13bdc7562c585b8410027db158d5222fde1459b1..e85c747c4169f8547b35af0aea44109ebbed1dec 100644
--- a/third_party/WebCore/Modules/webaudio/AudioNode.idl
+++ b/third_party/WebCore/Modules/webaudio/AudioNode.idl
@@ -30,10 +30,10 @@ module audio {
readonly attribute unsigned long numberOfInputs;
readonly attribute unsigned long numberOfOutputs;
- void connect(in AudioNode destination, in [Optional=DefaultIsUndefined] unsigned long output, in [Optional=DefaultIsUndefined] unsigned long input)
+ void connect(in AudioNode? destination, in [Optional=DefaultIsUndefined] unsigned long output, in [Optional=DefaultIsUndefined] unsigned long input)
raises(DOMException);
- void connect(in AudioParam destination, in [Optional=DefaultIsUndefined] unsigned long output)
+ void connect(in AudioParam? destination, in [Optional=DefaultIsUndefined] unsigned long output)
raises(DOMException);
void disconnect(in [Optional=DefaultIsUndefined] unsigned long output)
« no previous file with comments | « third_party/WebCore/Modules/webaudio/AudioContext.idl ('k') | third_party/WebCore/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698