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

Unified Diff: Source/modules/webaudio/OfflineAudioDestinationNode.h

Issue 423783002: WebAudio: Remove OfflineAudioDestinationNode::m_keepAliveWhileRendering (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | « no previous file | Source/modules/webaudio/OfflineAudioDestinationNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
};
« no previous file with comments | « no previous file | Source/modules/webaudio/OfflineAudioDestinationNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698