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

Unified Diff: Source/modules/mediastream/RTCStatsResponse.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/mediastream/RTCStatsResponse.h
diff --git a/Source/modules/mediastream/RTCStatsResponse.h b/Source/modules/mediastream/RTCStatsResponse.h
index 3d9e53519cf7b49eeb64d3dfe58a7b7f0d7c76f7..314d28a109e2773507f370b7936de10524f736bf 100644
--- a/Source/modules/mediastream/RTCStatsResponse.h
+++ b/Source/modules/mediastream/RTCStatsResponse.h
@@ -40,7 +40,7 @@ class RTCStatsResponse final : public RTCStatsResponseBase, public ScriptWrappab
public:
static RTCStatsResponse* create();
- const HeapVector<Member<RTCStatsReport> >& result() const { return m_result; }
+ const HeapVector<Member<RTCStatsReport>>& result() const { return m_result; }
RTCStatsReport* namedItem(const AtomicString& name);
@@ -52,7 +52,7 @@ public:
private:
RTCStatsResponse();
- HeapVector<Member<RTCStatsReport> > m_result;
+ HeapVector<Member<RTCStatsReport>> m_result;
HashMap<String, int> m_idmap;
};

Powered by Google App Engine
This is Rietveld 408576698