| Index: third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
|
| index 3773781b9eb86572814f929bb26f654a3e575581..6fd05b2163eb693686a9ab67368e2a5b2b95a358 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.h
|
| @@ -27,7 +27,6 @@
|
| #define WaveShaperNode_h
|
|
|
| #include "core/dom/DOMTypedArray.h"
|
| -#include "core/dom/NotShared.h"
|
| #include "modules/webaudio/AudioNode.h"
|
| #include "modules/webaudio/WaveShaperProcessor.h"
|
|
|
| @@ -47,9 +46,9 @@
|
| ExceptionState&);
|
|
|
| // setCurve() is called on the main thread.
|
| - void setCurve(NotShared<DOMFloat32Array>, ExceptionState&);
|
| + void setCurve(DOMFloat32Array*, ExceptionState&);
|
| void setCurve(const Vector<float>&, ExceptionState&);
|
| - NotShared<DOMFloat32Array> curve();
|
| + DOMFloat32Array* curve();
|
|
|
| void setOversample(const String&);
|
| String oversample() const;
|
|
|