2 * Copyright (C) 2014 Samsung Electronics
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
14 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
22 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include "PlatformSpeechSynthesizer.h"
29 #if ENABLE(SPEECH_SYNTHESIS)
31 #include <PlatformSpeechSynthesisProviderEfl.h>
32 #include <PlatformSpeechSynthesisUtterance.h>
33 #include <PlatformSpeechSynthesisVoice.h>
37 PlatformSpeechSynthesizer::PlatformSpeechSynthesizer(PlatformSpeechSynthesizerClient* client)
38 : m_voiceListIsInitialized(false)
39 , m_speechSynthesizerClient(client)
40 , m_platformSpeechWrapper(std::make_unique<PlatformSpeechSynthesisProviderEfl>(this))
45 PlatformSpeechSynthesizer::~PlatformSpeechSynthesizer()
49 void PlatformSpeechSynthesizer::initializeVoiceList()
51 m_platformSpeechWrapper->initializeVoiceList(m_voiceList);
54 void PlatformSpeechSynthesizer::pause()
56 m_platformSpeechWrapper->pause();
59 void PlatformSpeechSynthesizer::resume()
61 m_platformSpeechWrapper->resume();
64 void PlatformSpeechSynthesizer::speak(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance)
66 m_platformSpeechWrapper->speak(utterance);
69 void PlatformSpeechSynthesizer::cancel()
71 m_platformSpeechWrapper->cancel();
74 } // namespace WebCore
76 #endif // ENABLE(SPEECH_SYNTHESIS)