| Index: third_party/WebKit/Source/modules/webaudio/AudioBuffer.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/AudioBuffer.h b/third_party/WebKit/Source/modules/webaudio/AudioBuffer.h
|
| index d946994c57457f5f686ff0b2e4d760c88df63913..510431c039f13bcc18dd2cdc782fa9f6d4a064a1 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/AudioBuffer.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/AudioBuffer.h
|
| @@ -31,6 +31,7 @@
|
|
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| #include "core/dom/DOMTypedArray.h"
|
| +#include "core/dom/NotShared.h"
|
| #include "modules/ModulesExport.h"
|
| #include "wtf/PassRefPtr.h"
|
| #include "wtf/RefPtr.h"
|
| @@ -74,15 +75,20 @@ class MODULES_EXPORT AudioBuffer final : public GarbageCollected<AudioBuffer>,
|
|
|
| // Channel data access
|
| unsigned numberOfChannels() const { return channels_.size(); }
|
| - DOMFloat32Array* getChannelData(unsigned channel_index, ExceptionState&);
|
| - DOMFloat32Array* getChannelData(unsigned channel_index);
|
| - void copyFromChannel(DOMFloat32Array*, long channel_number, ExceptionState&);
|
| - void copyFromChannel(DOMFloat32Array*,
|
| + NotShared<DOMFloat32Array> getChannelData(unsigned channel_index,
|
| + ExceptionState&);
|
| + NotShared<DOMFloat32Array> getChannelData(unsigned channel_index);
|
| + void copyFromChannel(NotShared<DOMFloat32Array>,
|
| + long channel_number,
|
| + ExceptionState&);
|
| + void copyFromChannel(NotShared<DOMFloat32Array>,
|
| long channel_number,
|
| unsigned long start_in_channel,
|
| ExceptionState&);
|
| - void copyToChannel(DOMFloat32Array*, long channel_number, ExceptionState&);
|
| - void copyToChannel(DOMFloat32Array*,
|
| + void copyToChannel(NotShared<DOMFloat32Array>,
|
| + long channel_number,
|
| + ExceptionState&);
|
| + void copyToChannel(NotShared<DOMFloat32Array>,
|
| long channel_number,
|
| unsigned long start_in_channel,
|
| ExceptionState&);
|
|
|