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

Unified Diff: Source/modules/webaudio/WaveShaperNode.h

Issue 15619003: Add support for WaveShaperNode.oversample (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: thread-safety Created 7 years, 7 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: Source/modules/webaudio/WaveShaperNode.h
diff --git a/Source/modules/webaudio/WaveShaperNode.h b/Source/modules/webaudio/WaveShaperNode.h
index 2e7867655432fd11a5c5d31cfc67339410a10393..1140e394ed4a0745400aaf33fb669cace69806b5 100644
--- a/Source/modules/webaudio/WaveShaperNode.h
+++ b/Source/modules/webaudio/WaveShaperNode.h
@@ -43,6 +43,11 @@ public:
void setCurve(Float32Array*);
Float32Array* curve();
+ void setOversample(const String& , ExceptionCode&);
+ String oversample() const;
+
+ double latency() const { return latencyTime(); }
+
private:
explicit WaveShaperNode(AudioContext*);

Powered by Google App Engine
This is Rietveld 408576698