| Index: Source/modules/webaudio/AudioNodeInput.h
|
| diff --git a/Source/modules/webaudio/AudioNodeInput.h b/Source/modules/webaudio/AudioNodeInput.h
|
| index e5298b3657bfa5d69b096253b1e611c68dea2fd7..294f170fbd15947c98888b1dd8e5238a001167c7 100644
|
| --- a/Source/modules/webaudio/AudioNodeInput.h
|
| +++ b/Source/modules/webaudio/AudioNodeInput.h
|
| @@ -87,6 +87,8 @@ private:
|
| // m_disabledOutputs contains the AudioNodeOutputs which are disabled (will not be processed) by the audio graph rendering.
|
| // But, from JavaScript's perspective, these outputs are still connected to us.
|
| // Generally, these represent disabled connections from "notes" which have finished playing but are not yet garbage collected.
|
| + // Oilpan: Since items are added to the hash set by the audio thread (not registered to Oilpan),
|
| + // we cannot use a HeapHashSet.
|
| HashSet<AudioNodeOutput*> m_disabledOutputs;
|
|
|
| // Called from context's audio thread.
|
|
|