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

Unified Diff: modules/webaudio/AudioParam.idl

Issue 540533002: Roll IDL to Dartium37 (r181268) (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 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
« no previous file with comments | « modules/webaudio/AudioNode.idl ('k') | modules/webaudio/AudioProcessingEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/webaudio/AudioParam.idl
diff --git a/modules/webaudio/AudioParam.idl b/modules/webaudio/AudioParam.idl
index fa15d58bcf889092719a170f332a05b133a1597b..95d90e221d7197fe3df27f3307af800004b416dc 100644
--- a/modules/webaudio/AudioParam.idl
+++ b/modules/webaudio/AudioParam.idl
@@ -27,6 +27,7 @@
*/
[
+ WillBeGarbageCollected,
Conditional=WEB_AUDIO
] interface AudioParam {
attribute float value;
@@ -49,11 +50,11 @@
// Sets an array of arbitrary parameter values starting at time for the given duration.
// The number of values will be scaled to fit into the desired duration.
- void setValueCurveAtTime(Float32Array values, double time, double duration);
+ // FIXMEDART(ager): Auto-generate this custom method when the info about
+ // retaining typed arrays is in the IDL.
+ [DartCustom] void setValueCurveAtTime(Float32Array values, double time, double duration);
// Cancels all scheduled parameter changes with times greater than or equal to startTime.
void cancelScheduledValues(double startTime);
- [MeasureAs=LegacyWebAudio, ImplementedAs=setTargetAtTime] void setTargetValueAtTime(float targetValue, double time, double timeConstant);
-
};
« no previous file with comments | « modules/webaudio/AudioNode.idl ('k') | modules/webaudio/AudioProcessingEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698