summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/msgs.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/msgs.js')
-rw-r--r--chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/msgs.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/msgs.js b/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/msgs.js
index fc4fc80ae52..20a720af33d 100644
--- a/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/msgs.js
+++ b/chromium/chrome/browser/resources/chromeos/chromevox/chromevox/messages/msgs.js
@@ -14,7 +14,7 @@ goog.provide('cvox.Msgs');
*/
cvox.Msgs = function() {
/**
- * @type {Object<string, string>}
+ * @type {Object<string>}
* @private
*/
this.localeNameDict_ = null;
@@ -98,7 +98,7 @@ cvox.Msgs.prototype.getNumber = function(num) {
*/
cvox.Msgs.prototype.getLocaleDisplayName = function(locale) {
if (!this.localeNameDict_) {
- this.localeNameDict_ = /** @type {Object<string, string>} */(
+ this.localeNameDict_ = /** @type {Object<string>} */(
JSON.parse(this.getMsg('locale_dict')));
}
var name = this.localeNameDict_[locale];