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

Unified Diff: chrome/browser/extensions/extension_tts_api.h

Issue 3640001: Refactored TTS extension code so that the platform-specific TTS... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_tts_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_tts_api.h
===================================================================
--- chrome/browser/extensions/extension_tts_api.h (revision 62145)
+++ chrome/browser/extensions/extension_tts_api.h (working copy)
@@ -8,6 +8,46 @@
#include "chrome/browser/extensions/extension_function.h"
#include "chrome/browser/extensions/extension_tts_api_util.h"
+// Abstract class that defines the native platform TTS interface.
+class ExtensionTtsPlatformImpl {
+ public:
+ static ExtensionTtsPlatformImpl* GetInstance();
+
+ // Speak the given utterance with the given parameters if possible,
+ // and return true on success. Utterance will always be nonempty.
+ // If the user does not specify the other values, language and gender
+ // will be empty strings, and rate, pitch, and volume will be -1.0.
+ virtual bool Speak(
+ const std::string& utterance,
+ const std::string& language,
+ const std::string& gender,
+ double rate,
+ double pitch,
+ double volume) = 0;
+
+ // Stop speaking immediately and return true on success.
+ virtual bool StopSpeaking() = 0;
+
+ // Return true if the synthesis engine is currently speaking.
+ virtual bool IsSpeaking() = 0;
+
+ virtual std::string error() { return error_; }
+ virtual void clear_error() { error_ = std::string(); }
+ virtual void set_error(const std::string& error) { error_ = error; }
+
+ protected:
+ ExtensionTtsPlatformImpl() {}
+ virtual ~ExtensionTtsPlatformImpl() {}
+
+ std::string error_;
+
+ DISALLOW_COPY_AND_ASSIGN(ExtensionTtsPlatformImpl);
+};
+
+//
+// Extension API function definitions
+//
+
class ExtensionTtsSpeakFunction : public SyncExtensionFunction {
~ExtensionTtsSpeakFunction() {}
virtual bool RunImpl();
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_tts_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698