| 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);
|
| }
|
| }
|
|
|
|
|