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

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

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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 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

Powered by Google App Engine
This is Rietveld 408576698