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

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

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 2 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
« no previous file with comments | « Source/modules/webaudio/WaveShaperDSPKernel.cpp ('k') | Source/modules/webaudio/WaveShaperNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/WaveShaperNode.h
diff --git a/Source/modules/webaudio/WaveShaperNode.h b/Source/modules/webaudio/WaveShaperNode.h
index 0fae6392e814151d27906948e9563ba1c10e92f2..c3b0f22d400c6c5be794e323e7a0c9f9b61e9f6e 100644
--- a/Source/modules/webaudio/WaveShaperNode.h
+++ b/Source/modules/webaudio/WaveShaperNode.h
@@ -25,10 +25,10 @@
#ifndef WaveShaperNode_h
#define WaveShaperNode_h
+#include "core/dom/DOMTypedArray.h"
#include "modules/webaudio/AudioBasicProcessorNode.h"
#include "modules/webaudio/BiquadProcessor.h"
#include "modules/webaudio/WaveShaperProcessor.h"
-#include "wtf/Forward.h"
namespace blink {
@@ -43,8 +43,8 @@ public:
}
// setCurve() is called on the main thread.
- void setCurve(Float32Array*);
- Float32Array* curve();
+ void setCurve(DOMFloat32Array*);
+ DOMFloat32Array* curve();
void setOversample(const String& , ExceptionState&);
String oversample() const;
« no previous file with comments | « Source/modules/webaudio/WaveShaperDSPKernel.cpp ('k') | Source/modules/webaudio/WaveShaperNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698