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

Side by Side Diff: client/dom/generated/src/wrapping/_RealtimeAnalyserNodeWrappingImplementation.dart

Issue 9663027: Remove generated directories with 100s of files. (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 // Copyright (c) 2011, 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 class _RealtimeAnalyserNodeWrappingImplementation extends _AudioNodeWrappingImpl ementation implements RealtimeAnalyserNode {
8 _RealtimeAnalyserNodeWrappingImplementation() : super() {}
9
10 static create__RealtimeAnalyserNodeWrappingImplementation() native {
11 return new _RealtimeAnalyserNodeWrappingImplementation();
12 }
13
14 int get fftSize() { return _get_fftSize(this); }
15 static int _get_fftSize(var _this) native;
16
17 void set fftSize(int value) { _set_fftSize(this, value); }
18 static void _set_fftSize(var _this, int value) native;
19
20 int get frequencyBinCount() { return _get_frequencyBinCount(this); }
21 static int _get_frequencyBinCount(var _this) native;
22
23 num get maxDecibels() { return _get_maxDecibels(this); }
24 static num _get_maxDecibels(var _this) native;
25
26 void set maxDecibels(num value) { _set_maxDecibels(this, value); }
27 static void _set_maxDecibels(var _this, num value) native;
28
29 num get minDecibels() { return _get_minDecibels(this); }
30 static num _get_minDecibels(var _this) native;
31
32 void set minDecibels(num value) { _set_minDecibels(this, value); }
33 static void _set_minDecibels(var _this, num value) native;
34
35 num get smoothingTimeConstant() { return _get_smoothingTimeConstant(this); }
36 static num _get_smoothingTimeConstant(var _this) native;
37
38 void set smoothingTimeConstant(num value) { _set_smoothingTimeConstant(this, v alue); }
39 static void _set_smoothingTimeConstant(var _this, num value) native;
40
41 void getByteFrequencyData(Uint8Array array) {
42 _getByteFrequencyData(this, array);
43 return;
44 }
45 static void _getByteFrequencyData(receiver, array) native;
46
47 void getByteTimeDomainData(Uint8Array array) {
48 _getByteTimeDomainData(this, array);
49 return;
50 }
51 static void _getByteTimeDomainData(receiver, array) native;
52
53 void getFloatFrequencyData(Float32Array array) {
54 _getFloatFrequencyData(this, array);
55 return;
56 }
57 static void _getFloatFrequencyData(receiver, array) native;
58
59 String get typeName() { return "RealtimeAnalyserNode"; }
60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698