Index: Source/modules/webaudio/AudioNodeOutput.h |
diff --git a/Source/modules/webaudio/AudioNodeOutput.h b/Source/modules/webaudio/AudioNodeOutput.h |
index df0e22555be19042674b070ce5fa7b2d2f587ec4..54c0f6fb121f585baacd5205bd34b4ca6dcf6d60 100644 |
--- a/Source/modules/webaudio/AudioNodeOutput.h |
+++ b/Source/modules/webaudio/AudioNodeOutput.h |
@@ -137,8 +137,8 @@ private: |
// Oilpan: This HashMap holds connection references. We must call |
// AudioNode::makeConnection when we add an AudioNode to this, and must call |
// AudioNode::breakConnection() when we remove an AudioNode from this. |
- HeapHashMap<Member<AudioNodeInput>, Member<AudioNode> > m_inputs; |
- typedef HeapHashMap<Member<AudioNodeInput>, Member<AudioNode> >::iterator InputsIterator; |
+ HeapHashMap<Member<AudioNodeInput>, Member<AudioNode>> m_inputs; |
+ typedef HeapHashMap<Member<AudioNodeInput>, Member<AudioNode>>::iterator InputsIterator; |
bool m_isEnabled; |
#if ENABLE_ASSERT |
@@ -150,7 +150,7 @@ private: |
unsigned m_renderingFanOutCount; |
unsigned m_renderingParamFanOutCount; |
- HeapHashSet<Member<AudioParam> > m_params; |
+ HeapHashSet<Member<AudioParam>> m_params; |
}; |
} // namespace blink |