| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |