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

Unified Diff: chrome/browser/speech/tts_platform.cc

Issue 102263005: Automatically trigger installation of high-quality speech synthesis extension. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix debug assertion Created 7 years 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 | « chrome/browser/speech/tts_platform.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/tts_platform.cc
diff --git a/chrome/browser/speech/tts_platform.cc b/chrome/browser/speech/tts_platform.cc
index 6b51bdc9167571519b7b43fefa1c367a69d70cde..3942eff013b9af552b175dd349dfddbd6a92e565 100644
--- a/chrome/browser/speech/tts_platform.cc
+++ b/chrome/browser/speech/tts_platform.cc
@@ -6,10 +6,6 @@
#include <string>
-bool TtsPlatformImpl::LoadBuiltInTtsExtension(Profile* profile) {
- return false;
-}
-
std::string TtsPlatformImpl::error() {
return error_;
}
@@ -21,3 +17,7 @@ void TtsPlatformImpl::clear_error() {
void TtsPlatformImpl::set_error(const std::string& error) {
error_ = error;
}
+
+void TtsPlatformImpl::WillSpeakUtteranceWithVoice(const Utterance* utterance,
+ const VoiceData& voice_data) {
+}
« no previous file with comments | « chrome/browser/speech/tts_platform.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698