| Index: chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js b/chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js
|
| index f08997986a4fc8a52d313d84ff2d7e6448546f81..707e1ff731140a7d7182ae5aee9e0d992ede1c7c 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js
|
| @@ -58,8 +58,8 @@ cvox.ClassicEarcons.prototype.playEarcon = function(earcon, opt_location) {
|
|
|
| this.currentAudio = this.audioMap[earcon];
|
| if (!this.currentAudio) {
|
| - this.currentAudio = new Audio(chrome.extension.getURL(this.getBaseUrl() +
|
| - earcon + '.ogg'));
|
| + this.currentAudio =
|
| + new Audio(chrome.extension.getURL(this.getBaseUrl() + earcon + '.ogg'));
|
| this.audioMap[earcon] = this.currentAudio;
|
| }
|
| try {
|
|
|