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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/description_util.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/common/description_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/description_util.js b/chrome/browser/resources/chromeos/chromevox/common/description_util.js
index 237bb06d939ec8c726fa8f223eece4d6d638c366..e14def44141d3e990eb66d8a9bea7fb88ca7f622 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/description_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/description_util.js
@@ -469,6 +469,6 @@ cvox.DescriptionUtil.getMathDescription = function(node) {
if (cvox.ChromeVox.verbosity == cvox.VERBOSITY_VERBOSE) {
ret[ret.length - 1].annotation = 'math';
}
- ret[0].pushEarcon(cvox.AbstractEarcons.SPECIAL_CONTENT);
+ ret[0].pushEarcon(cvox.Earcon.SPECIAL_CONTENT);
return ret;
};

Powered by Google App Engine
This is Rietveld 408576698