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

Unified Diff: modules/webaudio/OscillatorNode.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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 | « modules/webaudio/OfflineAudioContext.idl ('k') | modules/webaudio/PannerNode.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/webaudio/OscillatorNode.idl
diff --git a/modules/webaudio/OscillatorNode.idl b/modules/webaudio/OscillatorNode.idl
index 823d20ed521bc213fc191c4adf9eca9f46818ff9..203abfe75eb5153956f86758d5ca47c9961fdb7a 100644
--- a/modules/webaudio/OscillatorNode.idl
+++ b/modules/webaudio/OscillatorNode.idl
@@ -29,13 +29,13 @@ enum OscillatorType {
"triangle",
"custom"
};
-
+
// OscillatorNode is an audio generator of periodic waveforms.
[
- Conditional=WEB_AUDIO
+ Conditional=WEB_AUDIO,
] interface OscillatorNode : AudioSourceNode {
- attribute OscillatorType type;
+ [RaisesException=Setter] attribute OscillatorType type;
readonly attribute AudioParam frequency; // in Hertz
readonly attribute AudioParam detune; // in Cents
@@ -43,9 +43,6 @@ enum OscillatorType {
[RaisesException] void start(optional double when);
[RaisesException] void stop(optional double when);
- [RaisesException, ImplementedAs=start] void noteOn(double when);
- [RaisesException, ImplementedAs=stop] void noteOff(double when);
-
void setPeriodicWave(PeriodicWave periodicWave);
attribute EventHandler onended;
« no previous file with comments | « modules/webaudio/OfflineAudioContext.idl ('k') | modules/webaudio/PannerNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698