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

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

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/WaveShaperNode.h ('k') | Source/modules/webaudio/WaveShaperProcessor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/WaveShaperNode.cpp
diff --git a/Source/modules/webaudio/WaveShaperNode.cpp b/Source/modules/webaudio/WaveShaperNode.cpp
index b8d895a7161974ef1dd8de66c5c734588be15153..4007886818c6ce76d8e12c77735a02dea21ca019 100644
--- a/Source/modules/webaudio/WaveShaperNode.cpp
+++ b/Source/modules/webaudio/WaveShaperNode.cpp
@@ -44,13 +44,13 @@ WaveShaperNode::WaveShaperNode(AudioContext* context)
initialize();
}
-void WaveShaperNode::setCurve(Float32Array* curve)
+void WaveShaperNode::setCurve(DOMFloat32Array* curve)
{
ASSERT(isMainThread());
waveShaperProcessor()->setCurve(curve);
}
-Float32Array* WaveShaperNode::curve()
+DOMFloat32Array* WaveShaperNode::curve()
{
return waveShaperProcessor()->curve();
}
« no previous file with comments | « Source/modules/webaudio/WaveShaperNode.h ('k') | Source/modules/webaudio/WaveShaperProcessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698