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

Unified Diff: Source/modules/speech/SpeechRecognitionResult.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/SpeechRecognitionResult.h
diff --git a/Source/modules/speech/SpeechRecognitionResult.h b/Source/modules/speech/SpeechRecognitionResult.h
index 0751d19cba33ade64b569b8890646759b73d0330..d74cb151fdebc046f51a627a6da764ac813efc52 100644
--- a/Source/modules/speech/SpeechRecognitionResult.h
+++ b/Source/modules/speech/SpeechRecognitionResult.h
@@ -35,7 +35,7 @@ namespace blink {
class SpeechRecognitionResult final : public GarbageCollected<SpeechRecognitionResult>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static SpeechRecognitionResult* create(const HeapVector<Member<SpeechRecognitionAlternative> >&, bool final);
+ static SpeechRecognitionResult* create(const HeapVector<Member<SpeechRecognitionAlternative>>&, bool final);
unsigned length() { return m_alternatives.size(); }
SpeechRecognitionAlternative* item(unsigned index);
@@ -44,10 +44,10 @@ public:
void trace(Visitor*);
private:
- SpeechRecognitionResult(const HeapVector<Member<SpeechRecognitionAlternative> >&, bool final);
+ SpeechRecognitionResult(const HeapVector<Member<SpeechRecognitionAlternative>>&, bool final);
bool m_final;
- HeapVector<Member<SpeechRecognitionAlternative> > m_alternatives;
+ HeapVector<Member<SpeechRecognitionAlternative>> m_alternatives;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698