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

Unified Diff: Source/platform/speech/PlatformSpeechSynthesizer.h

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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/platform/speech/PlatformSpeechSynthesizer.h
diff --git a/Source/platform/speech/PlatformSpeechSynthesizer.h b/Source/platform/speech/PlatformSpeechSynthesizer.h
index 5366006e107c1aa0ee6c08e2d3f83330828c4259..33d13f0228ff45c00561d776aa283ecd61a463bc 100644
--- a/Source/platform/speech/PlatformSpeechSynthesizer.h
+++ b/Source/platform/speech/PlatformSpeechSynthesizer.h
@@ -63,7 +63,7 @@ public:
virtual ~PlatformSpeechSynthesizer();
- const HeapVector<Member<PlatformSpeechSynthesisVoice> >& voiceList() const { return m_voiceList; }
+ const HeapVector<Member<PlatformSpeechSynthesisVoice>>& voiceList() const { return m_voiceList; }
virtual void speak(PlatformSpeechSynthesisUtterance*);
virtual void pause();
virtual void resume();
@@ -71,7 +71,7 @@ public:
PlatformSpeechSynthesizerClient* client() const { return m_speechSynthesizerClient; }
- void setVoiceList(HeapVector<Member<PlatformSpeechSynthesisVoice> >&);
+ void setVoiceList(HeapVector<Member<PlatformSpeechSynthesisVoice>>&);
virtual void trace(Visitor*);
@@ -80,7 +80,7 @@ protected:
virtual void initializeVoiceList();
- HeapVector<Member<PlatformSpeechSynthesisVoice> > m_voiceList;
+ HeapVector<Member<PlatformSpeechSynthesisVoice>> m_voiceList;
private:
Member<PlatformSpeechSynthesizerClient> m_speechSynthesizerClient;
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeMacOverlayAPI.mm ('k') | Source/platform/speech/PlatformSpeechSynthesizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698