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

Unified Diff: third_party/WebCore/Modules/webaudio/AudioContext.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/AudioContext.idl
diff --git a/third_party/WebCore/Modules/webaudio/AudioContext.idl b/third_party/WebCore/Modules/webaudio/AudioContext.idl
index 204b0c7d54ebab557b852f0011e86f401a46b689..4856d59f1b9318107eb9fb090cf3b62674ceb6f9 100644
--- a/third_party/WebCore/Modules/webaudio/AudioContext.idl
+++ b/third_party/WebCore/Modules/webaudio/AudioContext.idl
@@ -58,10 +58,17 @@ module webaudio {
// Sources
AudioBufferSourceNode createBufferSource();
+
#if defined(ENABLE_VIDEO) && ENABLE_VIDEO
MediaElementAudioSourceNode createMediaElementSource(in HTMLMediaElement mediaElement)
raises(DOMException);
#endif
+
+#if defined(ENABLE_MEDIA_STREAM) && ENABLE_MEDIA_STREAM
+ MediaStreamAudioSourceNode createMediaStreamSource(in MediaStream mediaStream)
+ raises(DOMException);
+#endif
+
// Processing nodes
AudioGainNode createGainNode();
DelayNode createDelayNode(in [Optional] double maxDelayTime);
« no previous file with comments | « third_party/WebCore/Modules/vibration/NavigatorVibration.idl ('k') | third_party/WebCore/Modules/webaudio/AudioPannerNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698