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

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

Issue 205173002: Move webaudio to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: WIP Created 6 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
Index: Source/modules/webaudio/AudioNodeOutput.h
diff --git a/Source/modules/webaudio/AudioNodeOutput.h b/Source/modules/webaudio/AudioNodeOutput.h
index 95eb35d608f1867ff9ec4d793f808ae3d38e1060..d00761d827755c251ee709e93f5364f0d9509841 100644
--- a/Source/modules/webaudio/AudioNodeOutput.h
+++ b/Source/modules/webaudio/AudioNodeOutput.h
@@ -140,8 +140,8 @@ private:
unsigned m_renderingFanOutCount;
unsigned m_renderingParamFanOutCount;
- HashSet<RefPtr<AudioParam> > m_params;
- typedef HashSet<RefPtr<AudioParam> >::iterator ParamsIterator;
+ WillBePersistentHeapHashSet<RefPtrWillBeMember<AudioParam> > m_params;
+ typedef WillBePersistentHeapHashSet<RefPtrWillBeMember<AudioParam> >::iterator ParamsIterator;
haraken 2014/03/27 11:44:05 It looks like this is unused. You can remove this
keishi 2014/04/03 06:53:19 Done.
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698