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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js

Issue 1306773003: Make earcon ids strings instead of numbers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_unused_earcons
Patch Set: Fixed test Created 5 years, 4 months 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/resources/chromeos/chromevox/cvox2/background/output.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
index b1f58bf769b8009ea623cff9e736e572aebbdb93..639ca1ee43cdae38519d4dc259d632cfdc421ae6 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
@@ -526,7 +526,7 @@ Output.EarconAction.prototype = {
/** @override */
run: function() {
- cvox.ChromeVox.earcons.playEarcon(cvox.AbstractEarcons[this.earconId]);
+ cvox.ChromeVox.earcons.playEarcon(cvox.Earcon[this.earconId]);
}
};

Powered by Google App Engine
This is Rietveld 408576698