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

Side by Side Diff: lib/html/doc/interface/BiquadFilterNode.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 BiquadFilterNode
8 interface BiquadFilterNode extends AudioNode {
9
10 static final int ALLPASS = 7;
11
12 static final int BANDPASS = 2;
13
14 static final int HIGHPASS = 1;
15
16 static final int HIGHSHELF = 4;
17
18 static final int LOWPASS = 0;
19
20 static final int LOWSHELF = 3;
21
22 static final int NOTCH = 6;
23
24 static final int PEAKING = 5;
25
26 /** @domName BiquadFilterNode.Q */
27 final AudioParam Q;
28
29 /** @domName BiquadFilterNode.frequency */
30 final AudioParam frequency;
31
32 /** @domName BiquadFilterNode.gain */
33 final AudioParam gain;
34
35 /** @domName BiquadFilterNode.type */
36 int type;
37
38 /** @domName BiquadFilterNode.getFrequencyResponse */
39 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse, Float32Array phaseResponse);
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698