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

Unified Diff: third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.h

Issue 2102133002: Add constructors for WebAudio nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and prefix use counter names with WebAudio Created 4 years, 3 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: third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.h
diff --git a/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.h b/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.h
index 024d3373882fa026d38584b9fed45986d3cebcb7..2621bafa2f6c4baf7d1b3d3caf55d095be7b4042 100644
--- a/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.h
+++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.h
@@ -53,7 +53,7 @@ public:
void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) override;
- void setCurve(DOMFloat32Array*);
+ void setCurve(const float* curveData, unsigned curveLength);
Vector<float>* curve() const { return m_curve.get(); };
void setOversample(OverSampleType);

Powered by Google App Engine
This is Rietveld 408576698