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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/cros/speech_synthesis_library.h
diff --git a/chrome/browser/chromeos/cros/speech_synthesis_library.h b/chrome/browser/chromeos/cros/speech_synthesis_library.h
new file mode 100644
index 0000000000000000000000000000000000000000..f0422077c9484b603ab5bfd6b8864d8b2fb7d12e
--- /dev/null
+++ b/chrome/browser/chromeos/cros/speech_synthesis_library.h
@@ -0,0 +1,44 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_CHROMEOS_CROS_SPEECH_SYNTHESIS_LIBRARY_H_
+#define CHROME_BROWSER_CHROMEOS_CROS_SPEECH_SYNTHESIS_LIBRARY_H_
+
+#include "base/singleton.h"
+
+namespace chromeos {
+
+// This interface defines the interaction with the ChromeOS login library APIs.
+class SpeechSynthesisLibrary {
+ public:
+ virtual ~SpeechSynthesisLibrary() {}
+ // Speaks the specified text.
+ virtual bool Speak(const char* text) = 0;
+ // Sets options for the subsequent speech synthesis requests.
+ virtual bool SetSpeakProperties(const char* props) = 0;
+ // Stops speaking the current utterance.
+ virtual bool StopSpeaking() = 0;
+ // Checks if the engine is currently speaking.
+ virtual bool IsSpeaking() = 0;
+};
+
+// This class handles the interaction with the ChromeOS login library APIs.
+class SpeechSynthesisLibraryImpl : public SpeechSynthesisLibrary {
+ public:
+ SpeechSynthesisLibraryImpl() {}
+ virtual ~SpeechSynthesisLibraryImpl() {}
+
+ // SpeechSynthesisLibrary overrides.
+ virtual bool Speak(const char* text);
+ virtual bool SetSpeakProperties(const char* props);
+ virtual bool StopSpeaking();
+ virtual bool IsSpeaking();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SpeechSynthesisLibraryImpl);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_CROS_SPEECH_SYNTHESIS_LIBRARY_H_
« 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