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

Side by Side Diff: client/dom/generated/src/frog/AudioBufferSourceNode.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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
1 1
2 class AudioBufferSourceNodeJs extends AudioSourceNodeJs implements AudioBufferSo urceNode native "*AudioBufferSourceNode" { 2 class _AudioBufferSourceNodeJs extends _AudioSourceNodeJs implements AudioBuffer SourceNode native "*AudioBufferSourceNode" {
3 3
4 AudioBufferJs get buffer() native "return this.buffer;"; 4 _AudioBufferJs get buffer() native "return this.buffer;";
5 5
6 void set buffer(AudioBufferJs value) native "this.buffer = value;"; 6 void set buffer(_AudioBufferJs value) native "this.buffer = value;";
7 7
8 AudioGainJs get gain() native "return this.gain;"; 8 _AudioGainJs get gain() native "return this.gain;";
9 9
10 bool get loop() native "return this.loop;"; 10 bool get loop() native "return this.loop;";
11 11
12 void set loop(bool value) native "this.loop = value;"; 12 void set loop(bool value) native "this.loop = value;";
13 13
14 bool get looping() native "return this.looping;"; 14 bool get looping() native "return this.looping;";
15 15
16 void set looping(bool value) native "this.looping = value;"; 16 void set looping(bool value) native "this.looping = value;";
17 17
18 AudioParamJs get playbackRate() native "return this.playbackRate;"; 18 _AudioParamJs get playbackRate() native "return this.playbackRate;";
19 19
20 void noteGrainOn(num when, num grainOffset, num grainDuration) native; 20 void noteGrainOn(num when, num grainOffset, num grainDuration) native;
21 21
22 void noteOff(num when) native; 22 void noteOff(num when) native;
23 23
24 void noteOn(num when) native; 24 void noteOn(num when) native;
25 } 25 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/AudioBuffer.dart ('k') | client/dom/generated/src/frog/AudioChannelMerger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698