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

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

Issue 10983049: Roll IDL to multivm@910 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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/AudioBufferSourceNode.idl
diff --git a/third_party/WebCore/Modules/webaudio/AudioBufferSourceNode.idl b/third_party/WebCore/Modules/webaudio/AudioBufferSourceNode.idl
index ae6af93e8a8f83ec4452d7aade16e408676ec997..ef5a3414bf7852e1fbb90b880ec287a566f09833 100644
--- a/third_party/WebCore/Modules/webaudio/AudioBufferSourceNode.idl
+++ b/third_party/WebCore/Modules/webaudio/AudioBufferSourceNode.idl
@@ -44,8 +44,15 @@ module audio {
attribute boolean loop; // This is the proper attribute name from the specification.
attribute boolean looping; // This is an alias for the .loop attribute for backwards compatibility.
- void noteOn(in double when);
- void noteGrainOn(in double when, in double grainOffset, in double grainDuration);
+ [V8MeasureAs=WebAudioStart] void start(in double when);
+ // FIXME: unfork
+ [V8MeasureAs=WebAudioStart, ImplementedAs=startGrain] void start(in double when, in double grainOffset, in double grainDuration);
+ void stop(in double when);
+
+#if defined(ENABLE_LEGACY_WEB_AUDIO) && ENABLE_LEGACY_WEB_AUDIO
+ [V8MeasureAs=LegacyWebAudioNoteOn] void noteOn(in double when);
+ [V8MeasureAs=LegacyWebAudioNoteOn] void noteGrainOn(in double when, in double grainOffset, in double grainDuration);
void noteOff(in double when);
+#endif
};
}
« no previous file with comments | « third_party/WebCore/Modules/notifications/Notification.idl ('k') | third_party/WebCore/Modules/webaudio/Oscillator.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698