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

Unified Diff: Source/modules/speech/SpeechSynthesis.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/SpeechSynthesis.h
diff --git a/Source/modules/speech/SpeechSynthesis.h b/Source/modules/speech/SpeechSynthesis.h
index 0b8305f90e9faecb03b18c17f3ed52bdd9064a80..be3557a7c9ae53e240dff9dcb5caf6af0b3e3327 100644
--- a/Source/modules/speech/SpeechSynthesis.h
+++ b/Source/modules/speech/SpeechSynthesis.h
@@ -55,7 +55,7 @@ public:
void pause();
void resume();
- const HeapVector<Member<SpeechSynthesisVoice> >& getVoices();
+ const HeapVector<Member<SpeechSynthesisVoice>>& getVoices();
// Used in testing to use a mock platform synthesizer
void setPlatformSynthesizer(PlatformSpeechSynthesizer*);
@@ -86,8 +86,8 @@ private:
SpeechSynthesisUtterance* currentSpeechUtterance() const;
Member<PlatformSpeechSynthesizer> m_platformSpeechSynthesizer;
- HeapVector<Member<SpeechSynthesisVoice> > m_voiceList;
- HeapDeque<Member<SpeechSynthesisUtterance> > m_utteranceQueue;
+ HeapVector<Member<SpeechSynthesisVoice>> m_voiceList;
+ HeapDeque<Member<SpeechSynthesisUtterance>> m_utteranceQueue;
bool m_isPaused;
// EventTarget

Powered by Google App Engine
This is Rietveld 408576698