Chromium Code Reviews| Index: Source/modules/webaudio/OfflineAudioDestinationNode.h |
| diff --git a/Source/modules/webaudio/OfflineAudioDestinationNode.h b/Source/modules/webaudio/OfflineAudioDestinationNode.h |
| index 2d168c50a25afe3bddb1f945c3a7f13b480de219..0f935c7ba27b32002f5f52033e5a81944f5b4951 100644 |
| --- a/Source/modules/webaudio/OfflineAudioDestinationNode.h |
| +++ b/Source/modules/webaudio/OfflineAudioDestinationNode.h |
| @@ -58,16 +58,10 @@ public: |
| virtual void trace(Visitor*) OVERRIDE; |
| private: |
| - class OfflineRenderingTask; |
|
tkent
2014/07/28 06:35:22
This class doesn't exist.
|
| - friend class OfflineRenderingTask; |
| - |
| OfflineAudioDestinationNode(AudioContext*, AudioBuffer* renderTarget); |
| // This AudioNode renders into this AudioBuffer. |
| RefPtrWillBeMember<AudioBuffer> m_renderTarget; |
| - // Oilpan: This object must be alive during audio rendering. |
| - GC_PLUGIN_IGNORE("http://crbug.com/395941") |
| - RefPtrWillBePersistent<OfflineAudioDestinationNode> m_keepAliveWhileRendering; |
| // Temporary AudioBus for each render quantum. |
| RefPtr<AudioBus> m_renderBus; |
| @@ -77,7 +71,6 @@ private: |
| void offlineRender(); |
| // For completion callback on main thread. |
| - static void notifyCompleteDispatch(void* userData); |
| void notifyComplete(); |
| }; |