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

Unified Diff: chrome/browser/chromeos/cros/speech_synthesis_library.cc

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 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.cc
diff --git a/chrome/browser/chromeos/cros/speech_synthesis_library.cc b/chrome/browser/chromeos/cros/speech_synthesis_library.cc
index 10194ee0413598f83f6d8bc3d77c230d3cf520ad..0325c1ffb70f76f2f7206dfdb9a2684ad3091d30 100644
--- a/chrome/browser/chromeos/cros/speech_synthesis_library.cc
+++ b/chrome/browser/chromeos/cros/speech_synthesis_library.cc
@@ -11,24 +11,55 @@
namespace chromeos {
-bool SpeechSynthesisLibraryImpl::Speak(const char* text) {
- return chromeos::Speak(text);
-}
+class SpeechSynthesisLibraryImpl : public SpeechSynthesisLibrary {
+ public:
+ SpeechSynthesisLibraryImpl() {}
+ virtual ~SpeechSynthesisLibraryImpl() {}
-bool SpeechSynthesisLibraryImpl::SetSpeakProperties(const char* props) {
- return chromeos::SetSpeakProperties(props);
-}
+ bool Speak(const char* text) {
+ return chromeos::Speak(text);
+ }
-bool SpeechSynthesisLibraryImpl::StopSpeaking() {
- return chromeos::StopSpeaking();
-}
+ bool SetSpeakProperties(const char* props) {
+ return chromeos::SetSpeakProperties(props);
+ }
-bool SpeechSynthesisLibraryImpl::IsSpeaking() {
- return chromeos::IsSpeaking();
-}
+ bool StopSpeaking() {
+ return chromeos::StopSpeaking();
+ }
+
+ bool IsSpeaking() {
+ return chromeos::IsSpeaking();
+ }
+
+ void InitTts(InitStatusCallback callback) {
+ chromeos::InitTts(callback);
+ }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SpeechSynthesisLibraryImpl);
+};
+
+class SpeechSynthesisLibraryStubImpl : public SpeechSynthesisLibrary {
+ public:
+ SpeechSynthesisLibraryStubImpl() {}
+ virtual ~SpeechSynthesisLibraryStubImpl() {}
+ bool Speak(const char* text) { return true; }
+ bool SetSpeakProperties(const char* props) { return true; }
+ bool StopSpeaking() { return true; }
+ bool IsSpeaking() { return false; }
+ void InitTts(InitStatusCallback callback) {}
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SpeechSynthesisLibraryStubImpl);
+};
-void SpeechSynthesisLibraryImpl::InitTts(InitStatusCallback callback) {
- chromeos::InitTts(callback);
+// static
+SpeechSynthesisLibrary* SpeechSynthesisLibrary::GetImpl(bool stub) {
+ if (stub)
+ return new SpeechSynthesisLibraryStubImpl();
+ else
+ return new SpeechSynthesisLibraryImpl();
}
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/speech_synthesis_library.h ('k') | chrome/browser/chromeos/cros/synaptics_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698