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

Side by Side Diff: third_party/WebCore/Modules/webaudio/AudioParam.idl

Issue 11363035: Roll IDLs forward. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 26 matching lines...) Expand all
37 readonly attribute DOMString name; 37 readonly attribute DOMString name;
38 38
39 // FIXME: Could define units constants here (seconds, decibels, cents, etc.) ... 39 // FIXME: Could define units constants here (seconds, decibels, cents, etc.) ...
40 readonly attribute unsigned short units; 40 readonly attribute unsigned short units;
41 41
42 // Parameter automation. 42 // Parameter automation.
43 void setValueAtTime(in float value, in float time); 43 void setValueAtTime(in float value, in float time);
44 void linearRampToValueAtTime(in float value, in float time); 44 void linearRampToValueAtTime(in float value, in float time);
45 void exponentialRampToValueAtTime(in float value, in float time); 45 void exponentialRampToValueAtTime(in float value, in float time);
46 46
47 // Exponentially approach the target value with a rate having the given time constant. 47 // Exponentially approach the target with a rate having the given time const ant.
48 void setTargetValueAtTime(in float targetValue, in float time, in float time Constant); 48 void setTargetAtTime(in float target, in float time, in float timeConstant);
49 49
50 // Sets an array of arbitrary parameter values starting at time for the give n duration. 50 // Sets an array of arbitrary parameter values starting at time for the give n duration.
51 // The number of values will be scaled to fit into the desired duration. 51 // The number of values will be scaled to fit into the desired duration.
52 void setValueCurveAtTime(in Float32Array values, in float time, in float dur ation); 52 void setValueCurveAtTime(in Float32Array values, in float time, in float dur ation);
53 53
54 // Cancels all scheduled parameter changes with times greater than or equal to startTime. 54 // Cancels all scheduled parameter changes with times greater than or equal to startTime.
55 void cancelScheduledValues(in float startTime); 55 void cancelScheduledValues(in float startTime);
56
57 #if defined(ENABLE_LEGACY_WEB_AUDIO) && ENABLE_LEGACY_WEB_AUDIO
58 [V8MeasureAs=LegacyWebAudio, ImplementedAs=setTargetAtTime] void setTargetVa lueAtTime(in float targetValue, in float time, in float timeConstant);
59 #endif
60
56 }; 61 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698