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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * * Redistributions of source code must retain the above copyright 7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright 9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 24 matching lines...) Expand all
35 , m_client(client) 35 , m_client(client)
36 { 36 {
37 } 37 }
38 38
39 WebSpeechSynthesizerClientImpl::~WebSpeechSynthesizerClientImpl() 39 WebSpeechSynthesizerClientImpl::~WebSpeechSynthesizerClientImpl()
40 { 40 {
41 } 41 }
42 42
43 void WebSpeechSynthesizerClientImpl::setVoiceList(const WebVector<WebSpeechSynth esisVoice>& voices) 43 void WebSpeechSynthesizerClientImpl::setVoiceList(const WebVector<WebSpeechSynth esisVoice>& voices)
44 { 44 {
45 HeapVector<Member<PlatformSpeechSynthesisVoice> > outVoices; 45 HeapVector<Member<PlatformSpeechSynthesisVoice>> outVoices;
46 for (size_t i = 0; i < voices.size(); i++) 46 for (size_t i = 0; i < voices.size(); i++)
47 outVoices.append(voices[i]); 47 outVoices.append(voices[i]);
48 m_synthesizer->setVoiceList(outVoices); 48 m_synthesizer->setVoiceList(outVoices);
49 m_client->voicesDidChange(); 49 m_client->voicesDidChange();
50 } 50 }
51 51
52 void WebSpeechSynthesizerClientImpl::didStartSpeaking(const WebSpeechSynthesisUt terance& utterance) 52 void WebSpeechSynthesizerClientImpl::didStartSpeaking(const WebSpeechSynthesisUt terance& utterance)
53 { 53 {
54 m_client->didStartSpeaking(utterance); 54 m_client->didStartSpeaking(utterance);
55 } 55 }
(...skipping 28 matching lines...) Expand all
84 m_client->boundaryEventOccurred(utterance, SpeechSentenceBoundary, charIndex ); 84 m_client->boundaryEventOccurred(utterance, SpeechSentenceBoundary, charIndex );
85 } 85 }
86 86
87 void WebSpeechSynthesizerClientImpl::trace(Visitor* visitor) 87 void WebSpeechSynthesizerClientImpl::trace(Visitor* visitor)
88 { 88 {
89 visitor->trace(m_synthesizer); 89 visitor->trace(m_synthesizer);
90 visitor->trace(m_client); 90 visitor->trace(m_client);
91 } 91 }
92 92
93 } // namespace blink 93 } // namespace blink
OLDNEW
« 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