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

Unified Diff: chrome/browser/chromeos/login/wizard_accessibility_helper.cc

Issue 8511026: Don't start speech synthesis until after the audio mixer is initialized. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
Index: chrome/browser/chromeos/login/wizard_accessibility_helper.cc
===================================================================
--- chrome/browser/chromeos/login/wizard_accessibility_helper.cc (revision 109026)
+++ chrome/browser/chromeos/login/wizard_accessibility_helper.cc (working copy)
@@ -92,7 +92,10 @@
void WizardAccessibilityHelper::MaybeSpeak(const char* str, bool queue,
bool interruptible) {
if (IsAccessibilityEnabled()) {
- accessibility::Speak(str, queue, interruptible);
+ // Note: queue and interruptible are no longer supported, but
+ // that shouldn't matter because the whole views-based wizard
+ // is obsolete and should be deleted soon.
+ accessibility::Speak(str);
}
}
« no previous file with comments | « chrome/browser/chromeos/login/wizard_accessibility_handler.cc ('k') | chrome/browser/extensions/extension_tts_api_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698