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

Unified Diff: Source/modules/webaudio/AudioContext.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/AudioContext.h
diff --git a/Source/modules/webaudio/AudioContext.h b/Source/modules/webaudio/AudioContext.h
index 51433185e0e1de3c8ba958b7bab19e27ac0d3888..40e0acf5bd78ee21a5441c447fadb04323b3df3c 100644
--- a/Source/modules/webaudio/AudioContext.h
+++ b/Source/modules/webaudio/AudioContext.h
@@ -317,9 +317,9 @@ private:
// Vector of promises created by resume(). It takes time to handle them, so we collect all of
// the promises here until they can be resolved or rejected.
- WillBeHeapVector<RefPtrWillBeMember<ScriptPromiseResolver> > m_resumeResolvers;
+ WillBeHeapVector<RefPtrWillBeMember<ScriptPromiseResolver>> m_resumeResolvers;
// Like m_resumeResolvers but for suspend().
- WillBeHeapVector<RefPtrWillBeMember<ScriptPromiseResolver> > m_suspendResolvers;
+ WillBeHeapVector<RefPtrWillBeMember<ScriptPromiseResolver>> m_suspendResolvers;
void rejectPendingResolvers();
// True if we're in the process of resolving promises for resume(). Resolving can take some
@@ -335,7 +335,7 @@ private:
private:
AudioNode& m_node;
};
- HeapHashMap<WeakMember<AudioNode>, OwnPtr<AudioNodeDisposer> > m_liveNodes;
+ HeapHashMap<WeakMember<AudioNode>, OwnPtr<AudioNodeDisposer>> m_liveNodes;
class AudioSummingJunctionDisposer {
public:
@@ -349,7 +349,7 @@ private:
// 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;
+ HeapHashMap<WeakMember<AudioSummingJunction>, OwnPtr<AudioSummingJunctionDisposer>> m_liveAudioSummingJunctions;
// These two HashSet must be accessed only when the graph lock is held.
// Oilpan: These HashSet should be HeapHashSet<WeakMember<AudioNodeOutput>>

Powered by Google App Engine
This is Rietveld 408576698