summaryrefslogtreecommitdiffstats
path: root/chrome/browser/speech/tts_android.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/speech/tts_android.cc')
-rw-r--r--chrome/browser/speech/tts_android.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/browser/speech/tts_android.cc b/chrome/browser/speech/tts_android.cc
index 8c7105c..36e6e22 100644
--- a/chrome/browser/speech/tts_android.cc
+++ b/chrome/browser/speech/tts_android.cc
@@ -69,6 +69,13 @@ bool TtsPlatformImplAndroid::StopSpeaking() {
return true;
}
+void TtsPlatformImplAndroid::Pause() {
+ StopSpeaking();
+}
+
+void TtsPlatformImplAndroid::Resume() {
+}
+
bool TtsPlatformImplAndroid::IsSpeaking() {
return (utterance_id_ != 0);
}