Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(981)

Side by Side Diff: chrome/browser/chromeos/cros/speech_synthesis_library.h

Issue 1774013: Adding speech synthesis library to access TTS feature in libcros. (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/mock_speech_synthesis_library.h ('k') | chrome/browser/chromeos/cros/speech_synthesis_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698