| Index: Source/modules/webaudio/OfflineAudioDestinationNode.h
|
| diff --git a/Source/modules/webaudio/OfflineAudioDestinationNode.h b/Source/modules/webaudio/OfflineAudioDestinationNode.h
|
| index 3f6fb4bed28d13c3df4ec4a40efff6e20f029b10..22c2edbb55995e4e92d9eb3ffa04ab7e677d2eca 100644
|
| --- a/Source/modules/webaudio/OfflineAudioDestinationNode.h
|
| +++ b/Source/modules/webaudio/OfflineAudioDestinationNode.h
|
| @@ -38,9 +38,9 @@ class AudioContext;
|
|
|
| class OfflineAudioDestinationNode FINAL : public AudioDestinationNode {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<OfflineAudioDestinationNode> create(AudioContext* context, AudioBuffer* renderTarget)
|
| + static OfflineAudioDestinationNode* create(AudioContext* context, AudioBuffer* renderTarget)
|
| {
|
| - return adoptRefWillBeNoop(new OfflineAudioDestinationNode(context, renderTarget));
|
| + return new OfflineAudioDestinationNode(context, renderTarget);
|
| }
|
|
|
| virtual ~OfflineAudioDestinationNode();
|
| @@ -61,7 +61,7 @@ private:
|
| OfflineAudioDestinationNode(AudioContext*, AudioBuffer* renderTarget);
|
|
|
| // This AudioNode renders into this AudioBuffer.
|
| - RefPtrWillBeMember<AudioBuffer> m_renderTarget;
|
| + Member<AudioBuffer> m_renderTarget;
|
| // Temporary AudioBus for each render quantum.
|
| RefPtr<AudioBus> m_renderBus;
|
|
|
|
|