OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2013 Apple Computer, 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. 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 30 matching lines...) Expand all Loading... |
41 new PlatformSpeechSynthesizer(client); | 41 new PlatformSpeechSynthesizer(client); |
42 synthesizer->InitializeVoiceList(); | 42 synthesizer->InitializeVoiceList(); |
43 return synthesizer; | 43 return synthesizer; |
44 } | 44 } |
45 | 45 |
46 PlatformSpeechSynthesizer::PlatformSpeechSynthesizer( | 46 PlatformSpeechSynthesizer::PlatformSpeechSynthesizer( |
47 PlatformSpeechSynthesizerClient* client) | 47 PlatformSpeechSynthesizerClient* client) |
48 : speech_synthesizer_client_(client) { | 48 : speech_synthesizer_client_(client) { |
49 web_speech_synthesizer_client_ = | 49 web_speech_synthesizer_client_ = |
50 new WebSpeechSynthesizerClientImpl(this, client); | 50 new WebSpeechSynthesizerClientImpl(this, client); |
51 web_speech_synthesizer_ = Platform::Current()->CreateSpeechSynthesizer( | 51 web_speech_synthesizer_ = |
52 web_speech_synthesizer_client_); | 52 WTF::WrapUnique(Platform::Current()->CreateSpeechSynthesizer( |
| 53 web_speech_synthesizer_client_)); |
53 } | 54 } |
54 | 55 |
55 PlatformSpeechSynthesizer::~PlatformSpeechSynthesizer() {} | 56 PlatformSpeechSynthesizer::~PlatformSpeechSynthesizer() {} |
56 | 57 |
57 void PlatformSpeechSynthesizer::Speak( | 58 void PlatformSpeechSynthesizer::Speak( |
58 PlatformSpeechSynthesisUtterance* utterance) { | 59 PlatformSpeechSynthesisUtterance* utterance) { |
59 if (web_speech_synthesizer_ && web_speech_synthesizer_client_) | 60 if (web_speech_synthesizer_ && web_speech_synthesizer_client_) |
60 web_speech_synthesizer_->Speak(WebSpeechSynthesisUtterance(utterance)); | 61 web_speech_synthesizer_->Speak(WebSpeechSynthesisUtterance(utterance)); |
61 } | 62 } |
62 | 63 |
(...skipping 21 matching lines...) Expand all Loading... |
84 if (web_speech_synthesizer_) | 85 if (web_speech_synthesizer_) |
85 web_speech_synthesizer_->UpdateVoiceList(); | 86 web_speech_synthesizer_->UpdateVoiceList(); |
86 } | 87 } |
87 | 88 |
88 DEFINE_TRACE(PlatformSpeechSynthesizer) { | 89 DEFINE_TRACE(PlatformSpeechSynthesizer) { |
89 visitor->Trace(speech_synthesizer_client_); | 90 visitor->Trace(speech_synthesizer_client_); |
90 visitor->Trace(web_speech_synthesizer_client_); | 91 visitor->Trace(web_speech_synthesizer_client_); |
91 } | 92 } |
92 | 93 |
93 } // namespace blink | 94 } // namespace blink |
OLD | NEW |