OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_SPEECH_SYNTHESIS_LIBRARY_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CROS_SPEECH_SYNTHESIS_LIBRARY_H_ |
| 7 |
| 8 #include "base/singleton.h" |
| 9 |
| 10 namespace chromeos { |
| 11 |
| 12 // This interface defines the interaction with the ChromeOS login library APIs. |
| 13 class SpeechSynthesisLibrary { |
| 14 public: |
| 15 virtual ~SpeechSynthesisLibrary() {} |
| 16 // Speaks the specified text. |
| 17 virtual bool Speak(const char* text) = 0; |
| 18 // Sets options for the subsequent speech synthesis requests. |
| 19 virtual bool SetSpeakProperties(const char* props) = 0; |
| 20 // Stops speaking the current utterance. |
| 21 virtual bool StopSpeaking() = 0; |
| 22 // Checks if the engine is currently speaking. |
| 23 virtual bool IsSpeaking() = 0; |
| 24 }; |
| 25 |
| 26 // This class handles the interaction with the ChromeOS login library APIs. |
| 27 class SpeechSynthesisLibraryImpl : public SpeechSynthesisLibrary { |
| 28 public: |
| 29 SpeechSynthesisLibraryImpl() {} |
| 30 virtual ~SpeechSynthesisLibraryImpl() {} |
| 31 |
| 32 // SpeechSynthesisLibrary overrides. |
| 33 virtual bool Speak(const char* text); |
| 34 virtual bool SetSpeakProperties(const char* props); |
| 35 virtual bool StopSpeaking(); |
| 36 virtual bool IsSpeaking(); |
| 37 |
| 38 private: |
| 39 DISALLOW_COPY_AND_ASSIGN(SpeechSynthesisLibraryImpl); |
| 40 }; |
| 41 |
| 42 } // namespace chromeos |
| 43 |
| 44 #endif // CHROME_BROWSER_CHROMEOS_CROS_SPEECH_SYNTHESIS_LIBRARY_H_ |
OLD | NEW |