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

Unified Diff: third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl

Issue 2471353004: Implement AudioScheduledSourceNode (Closed)
Patch Set: Rebaseline test Created 3 years, 12 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/WebKit/Source/modules/webaudio/ConstantSourceNode.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl
diff --git a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl
index 117e4ddb73ad5a72c5442e2123a52380f856d435..1f3e3052b64481c302c874fe79a1260f447b521e 100644
--- a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl
+++ b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl
@@ -36,20 +36,14 @@ enum OscillatorType {
[
Constructor(BaseAudioContext context, optional OscillatorOptions options),
RaisesException=Constructor,
- ActiveScriptWrappable,
Measure
]
-interface OscillatorNode : AudioSourceNode {
+interface OscillatorNode : AudioScheduledSourceNode {
[RaisesException=Setter] attribute OscillatorType type;
readonly attribute AudioParam frequency; // in Hertz
readonly attribute AudioParam detune; // in Cents
- [RaisesException] void start(optional double when);
- [RaisesException] void stop(optional double when);
-
void setPeriodicWave(PeriodicWave periodicWave);
-
- attribute EventHandler onended;
};
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/ConstantSourceNode.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698