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

Unified Diff: client/dom/generated/src/frog/AudioBufferSourceNode.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/AudioBufferSourceNode.dart
diff --git a/client/dom/generated/src/frog/AudioBufferSourceNode.dart b/client/dom/generated/src/frog/AudioBufferSourceNode.dart
index 7c0e78ea3c9b1dfbada2cc6e72bb8b9f5e1f3b27..7a4f91612e8a93ae5249bf8fa66936753ec61051 100644
--- a/client/dom/generated/src/frog/AudioBufferSourceNode.dart
+++ b/client/dom/generated/src/frog/AudioBufferSourceNode.dart
@@ -1,11 +1,11 @@
-class AudioBufferSourceNode extends AudioSourceNode native "*AudioBufferSourceNode" {
+class AudioBufferSourceNodeJS extends AudioSourceNodeJS implements AudioBufferSourceNode native "*AudioBufferSourceNode" {
- AudioBuffer get buffer() native "return this.buffer;";
+ AudioBufferJS get buffer() native "return this.buffer;";
- void set buffer(AudioBuffer value) native "this.buffer = value;";
+ void set buffer(AudioBufferJS value) native "this.buffer = value;";
- AudioGain get gain() native "return this.gain;";
+ AudioGainJS get gain() native "return this.gain;";
bool get loop() native "return this.loop;";
@@ -15,7 +15,7 @@ class AudioBufferSourceNode extends AudioSourceNode native "*AudioBufferSourceNo
void set looping(bool value) native "this.looping = value;";
- AudioParam get playbackRate() native "return this.playbackRate;";
+ AudioParamJS get playbackRate() native "return this.playbackRate;";
void noteGrainOn(num when, num grainOffset, num grainDuration) native;
« no previous file with comments | « client/dom/generated/src/frog/AudioBufferCallback.dart ('k') | client/dom/generated/src/frog/AudioChannelMerger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698