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

Side by Side Diff: lib/html/doc/interface/AudioParam.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 /// @domName AudioParam
8 interface AudioParam {
9
10 /** @domName AudioParam.defaultValue */
11 final num defaultValue;
12
13 /** @domName AudioParam.maxValue */
14 final num maxValue;
15
16 /** @domName AudioParam.minValue */
17 final num minValue;
18
19 /** @domName AudioParam.name */
20 final String name;
21
22 /** @domName AudioParam.units */
23 final int units;
24
25 /** @domName AudioParam.value */
26 num value;
27
28 /** @domName AudioParam.cancelScheduledValues */
29 void cancelScheduledValues(num startTime);
30
31 /** @domName AudioParam.exponentialRampToValueAtTime */
32 void exponentialRampToValueAtTime(num value, num time);
33
34 /** @domName AudioParam.linearRampToValueAtTime */
35 void linearRampToValueAtTime(num value, num time);
36
37 /** @domName AudioParam.setTargetValueAtTime */
38 void setTargetValueAtTime(num targetValue, num time, num timeConstant);
39
40 /** @domName AudioParam.setValueAtTime */
41 void setValueAtTime(num value, num time);
42
43 /** @domName AudioParam.setValueCurveAtTime */
44 void setValueCurveAtTime(Float32Array values, num time, num duration);
45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698