| Index: chrome/browser/speech/tts_android.cc
|
| diff --git a/chrome/browser/speech/tts_android.cc b/chrome/browser/speech/tts_android.cc
|
| index 8c7105cc8bf3c76c4549ef96254a0f49d71fd6c5..36e6e222619d148b40bc5b31f6171208cb926b60 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);
|
| }
|
|
|