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

Unified Diff: Source/modules/speech/SpeechRecognitionResultList.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/speech/SpeechRecognitionResultList.h
diff --git a/Source/modules/speech/SpeechRecognitionResultList.h b/Source/modules/speech/SpeechRecognitionResultList.h
index 63732b7c38c0cff970bd800eeb24975e8716e3f0..7f0c893b92b255e2b6e2c387a2df73f7396aa54a 100644
--- a/Source/modules/speech/SpeechRecognitionResultList.h
+++ b/Source/modules/speech/SpeechRecognitionResultList.h
@@ -35,7 +35,7 @@ namespace blink {
class SpeechRecognitionResultList : public GarbageCollected<SpeechRecognitionResultList>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static SpeechRecognitionResultList* create(const HeapVector<Member<SpeechRecognitionResult> >&);
+ static SpeechRecognitionResultList* create(const HeapVector<Member<SpeechRecognitionResult>>&);
unsigned length() { return m_results.size(); }
SpeechRecognitionResult* item(unsigned index);
@@ -43,9 +43,9 @@ public:
void trace(Visitor*);
private:
- explicit SpeechRecognitionResultList(const HeapVector<Member<SpeechRecognitionResult> >&);
+ explicit SpeechRecognitionResultList(const HeapVector<Member<SpeechRecognitionResult>>&);
- HeapVector<Member<SpeechRecognitionResult> > m_results;
+ HeapVector<Member<SpeechRecognitionResult>> m_results;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698