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

Side by Side Diff: client/html/generated/html/frog/BiquadFilterNode.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
2 class _BiquadFilterNodeImpl extends _AudioNodeImpl implements BiquadFilterNode n ative "*BiquadFilterNode" {
3
4 static final int ALLPASS = 7;
5
6 static final int BANDPASS = 2;
7
8 static final int HIGHPASS = 1;
9
10 static final int HIGHSHELF = 4;
11
12 static final int LOWPASS = 0;
13
14 static final int LOWSHELF = 3;
15
16 static final int NOTCH = 6;
17
18 static final int PEAKING = 5;
19
20 final _AudioParamImpl Q;
21
22 final _AudioParamImpl frequency;
23
24 final _AudioParamImpl gain;
25
26 int type;
27
28 void getFrequencyResponse(_Float32ArrayImpl frequencyHz, _Float32ArrayImpl mag Response, _Float32ArrayImpl phaseResponse) native;
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698