| Index: chrome/browser/resources/chromeos/chromevox/chromevox/injected/event_watcher.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/event_watcher.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/event_watcher.js
|
| index b5638968f71d213027f943543caac96f98dafe0d..d4c228cb8acb10af62f0b51efeaf4ee248b22063 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/event_watcher.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/event_watcher.js
|
| @@ -1104,9 +1104,9 @@ cvox.ChromeVoxEventWatcher.handleControlChanged = function(control) {
|
| announceChange = true;
|
| // Play earcons for checkboxes and radio buttons
|
| if (control.checked) {
|
| - cvox.ChromeVox.earcons.playEarcon(cvox.AbstractEarcons.CHECK_ON);
|
| + cvox.ChromeVox.earcons.playEarcon(cvox.Earcon.CHECK_ON);
|
| } else {
|
| - cvox.ChromeVox.earcons.playEarcon(cvox.AbstractEarcons.CHECK_OFF);
|
| + cvox.ChromeVox.earcons.playEarcon(cvox.Earcon.CHECK_OFF);
|
| }
|
| }
|
|
|
|
|