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

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

Issue 15108002: Add Pause and Resume to Web TTS & Extension TTS APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 7 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 | « chrome/browser/speech/tts_controller.cc ('k') | chrome/browser/speech/tts_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/tts_controller_unittest.cc
diff --git a/chrome/browser/speech/tts_controller_unittest.cc b/chrome/browser/speech/tts_controller_unittest.cc
index 16e912d59a563a41a5a3eb2e7a03e3688d5d5385..9b77830ab7cdeb4535c93abdf4b61c24366ee432 100644
--- a/chrome/browser/speech/tts_controller_unittest.cc
+++ b/chrome/browser/speech/tts_controller_unittest.cc
@@ -28,6 +28,8 @@ class DummyTtsPlatformImpl : public TtsPlatformImpl {
}
virtual bool IsSpeaking() OVERRIDE { return false; }
virtual bool StopSpeaking() OVERRIDE { return true; }
+ virtual void Pause() OVERRIDE {}
+ virtual void Resume() OVERRIDE {}
virtual void GetVoices(std::vector<VoiceData>* out_voices) OVERRIDE {}
virtual std::string error() OVERRIDE { return std::string(); }
virtual void clear_error() OVERRIDE {}
« no previous file with comments | « chrome/browser/speech/tts_controller.cc ('k') | chrome/browser/speech/tts_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698