| 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
|
|
|