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

Unified Diff: sdk/lib/web_audio/dartium/web_audio_dartium.dart

Issue 16636003: Blink IDL roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/web_audio/dartium/web_audio_dartium.dart
diff --git a/sdk/lib/web_audio/dartium/web_audio_dartium.dart b/sdk/lib/web_audio/dartium/web_audio_dartium.dart
index d2cddf3d1c0ec9e42fc1b7a6a79a7664e5aed17a..2f3e649d66f0552b33ab02aa5f360ea3c1c5b34b 100644
--- a/sdk/lib/web_audio/dartium/web_audio_dartium.dart
+++ b/sdk/lib/web_audio/dartium/web_audio_dartium.dart
@@ -1314,6 +1314,16 @@ class WaveShaperNode extends AudioNode {
@DocsEditable
void set curve(Float32List value) native "WaveShaperNode_curve_Setter";
+ @DomName('WaveShaperNode.oversample')
+ @DocsEditable
+ @Experimental // untriaged
+ String get oversample native "WaveShaperNode_oversample_Getter";
+
+ @DomName('WaveShaperNode.oversample')
+ @DocsEditable
+ @Experimental // untriaged
+ void set oversample(String value) native "WaveShaperNode_oversample_Setter";
+
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a

Powered by Google App Engine
This is Rietveld 408576698