| Index: chrome/browser/resources/chromeos/chromevox/host/chrome/earcons_background.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/host/chrome/earcons_background.js b/chrome/browser/resources/chromeos/chromevox/host/chrome/earcons_background.js
|
| index 22285e6f9ebf6a74967545d89b96701615648a45..500da1a1e4825b75a2782ed54ac0ad4690b922e8 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/host/chrome/earcons_background.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/earcons_background.js
|
| @@ -54,13 +54,13 @@ cvox.EarconsBackground.prototype.playEarcon = function(earcon) {
|
| return;
|
| }
|
| if (window['console']) {
|
| - window['console']['log']('Earcon ' + this.getEarconName(earcon));
|
| + window['console']['log']('Earcon ' + earcon);
|
| }
|
|
|
| this.currentAudio = this.audioMap[earcon];
|
| if (!this.currentAudio) {
|
| this.currentAudio = new Audio(chrome.extension.getURL(this.getBaseUrl() +
|
| - this.getEarconFilename(earcon)));
|
| + earcon + '.ogg'));
|
| this.audioMap[earcon] = this.currentAudio;
|
| }
|
| try {
|
|
|