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

Unified Diff: Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp

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
« no previous file with comments | « Source/platform/exported/WebMediaStreamSource.cpp ('k') | Source/platform/exported/linux/WebFontInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp
diff --git a/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp b/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp
index e5e1cd98db0200b4ec3d6679bf1eb42fd45df756..fa3d9ddec84aa7fb6407080f2c034d853fc8cc59 100644
--- a/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp
+++ b/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp
@@ -42,7 +42,7 @@ WebSpeechSynthesizerClientImpl::~WebSpeechSynthesizerClientImpl()
void WebSpeechSynthesizerClientImpl::setVoiceList(const WebVector<WebSpeechSynthesisVoice>& voices)
{
- HeapVector<Member<PlatformSpeechSynthesisVoice> > outVoices;
+ HeapVector<Member<PlatformSpeechSynthesisVoice>> outVoices;
for (size_t i = 0; i < voices.size(); i++)
outVoices.append(voices[i]);
m_synthesizer->setVoiceList(outVoices);
« no previous file with comments | « Source/platform/exported/WebMediaStreamSource.cpp ('k') | Source/platform/exported/linux/WebFontInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698