| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SPEECH_EXTENSION_API_TTS_ENGINE_EXTENSION_API_H_ | 5 #ifndef CHROME_BROWSER_SPEECH_EXTENSION_API_TTS_ENGINE_EXTENSION_API_H_ |
| 6 #define CHROME_BROWSER_SPEECH_EXTENSION_API_TTS_ENGINE_EXTENSION_API_H_ | 6 #define CHROME_BROWSER_SPEECH_EXTENSION_API_TTS_ENGINE_EXTENSION_API_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 std::vector<VoiceData>* out_voices) override; | 42 std::vector<VoiceData>* out_voices) override; |
| 43 void Speak(Utterance* utterance, const VoiceData& voice) override; | 43 void Speak(Utterance* utterance, const VoiceData& voice) override; |
| 44 void Stop(Utterance* utterance) override; | 44 void Stop(Utterance* utterance) override; |
| 45 void Pause(Utterance* utterance) override; | 45 void Pause(Utterance* utterance) override; |
| 46 void Resume(Utterance* utterance) override; | 46 void Resume(Utterance* utterance) override; |
| 47 bool LoadBuiltInTtsExtension( | 47 bool LoadBuiltInTtsExtension( |
| 48 content::BrowserContext* browser_context) override; | 48 content::BrowserContext* browser_context) override; |
| 49 }; | 49 }; |
| 50 // Hidden/internal extension function used to allow TTS engine extensions | 50 // Hidden/internal extension function used to allow TTS engine extensions |
| 51 // to send events back to the client that's calling tts.speak(). | 51 // to send events back to the client that's calling tts.speak(). |
| 52 class ExtensionTtsEngineSendTtsEventFunction : public SyncExtensionFunction { | 52 class ExtensionTtsEngineSendTtsEventFunction |
| 53 : public UIThreadExtensionFunction { |
| 53 private: | 54 private: |
| 54 ~ExtensionTtsEngineSendTtsEventFunction() override {} | 55 ~ExtensionTtsEngineSendTtsEventFunction() override {} |
| 55 bool RunSync() override; | 56 ResponseAction Run() override; |
| 56 DECLARE_EXTENSION_FUNCTION("ttsEngine.sendTtsEvent", TTSENGINE_SENDTTSEVENT) | 57 DECLARE_EXTENSION_FUNCTION("ttsEngine.sendTtsEvent", TTSENGINE_SENDTTSEVENT) |
| 57 }; | 58 }; |
| 58 | 59 |
| 59 #endif // CHROME_BROWSER_SPEECH_EXTENSION_API_TTS_ENGINE_EXTENSION_API_H_ | 60 #endif // CHROME_BROWSER_SPEECH_EXTENSION_API_TTS_ENGINE_EXTENSION_API_H_ |
| OLD | NEW |