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

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

Issue 1037683002: Web Audio: Unapply Oilpan to AudioSummingJunction. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove m_didCallDispose Created 5 years, 9 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/AudioContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioContext.h
diff --git a/Source/modules/webaudio/AudioContext.h b/Source/modules/webaudio/AudioContext.h
index b8234f5a9112d9250e925c1317a2b03f349cc671..e4cf16a142fac5cc6d46e08485041d04ca64c338 100644
--- a/Source/modules/webaudio/AudioContext.h
+++ b/Source/modules/webaudio/AudioContext.h
@@ -296,7 +296,6 @@ public:
// Called periodically at the end of each render quantum to dereference finished source nodes.
void derefFinishedSourceNodes();
- void registerLiveAudioSummingJunction(AudioSummingJunction&);
void registerLiveNode(AudioNode&);
// Keeps track of the number of connections made.
@@ -428,20 +427,6 @@ private:
};
HeapHashMap<WeakMember<AudioNode>, OwnPtr<AudioNodeDisposer>> m_liveNodes;
- class AudioSummingJunctionDisposer {
- public:
- explicit AudioSummingJunctionDisposer(AudioSummingJunction& junction) : m_junction(junction) { }
- ~AudioSummingJunctionDisposer();
-
- private:
- AudioSummingJunction& m_junction;
- };
- // The purpose of m_liveAudioSummingJunctions is to remove a dying
- // AudioSummingJunction from m_dirtySummingJunctions. However we put all of
- // AudioSummingJunction objects to m_liveAudioSummingJunctions to avoid
- // concurrent access to m_liveAudioSummingJunctions.
- HeapHashMap<WeakMember<AudioSummingJunction>, OwnPtr<AudioSummingJunctionDisposer>> m_liveAudioSummingJunctions;
-
unsigned m_connectionCount;
// Graph locking.
« no previous file with comments | « no previous file | Source/modules/webaudio/AudioContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698