| Index: chrome/browser/resources/chromeos/chromevox/chromevox/background/options.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/options.js b/chrome/browser/resources/chromeos/chromevox/chromevox/background/options.js
|
| index d85260806b117b724bf1b4449896e35de7728973..bbf63da5081734f38a1f0c5a271bd63a2ca4a97d 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/options.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/options.js
|
| @@ -42,7 +42,7 @@ cvox.OptionsPage.prefs;
|
| /**
|
| * A mapping from keycodes to their human readable text equivalents.
|
| * This is initialized in cvox.OptionsPage.init for internationalization.
|
| - * @type {Object.<string, string>}
|
| + * @type {Object<string, string>}
|
| */
|
| cvox.OptionsPage.KEYCODE_TO_TEXT = {
|
| };
|
| @@ -50,7 +50,7 @@ cvox.OptionsPage.KEYCODE_TO_TEXT = {
|
| /**
|
| * A mapping from human readable text to keycode values.
|
| * This is initialized in cvox.OptionsPage.init for internationalization.
|
| - * @type {Object.<string, string>}
|
| + * @type {Object<string, string>}
|
| */
|
| cvox.OptionsPage.TEXT_TO_KEYCODE = {
|
| };
|
| @@ -68,7 +68,7 @@ cvox.OptionsPage.init = function() {
|
| cvox.OptionsPage.addKeys();
|
| cvox.OptionsPage.populateVoicesSelect();
|
| cvox.BrailleTable.getAll(function(tables) {
|
| - /** @type {!Array.<cvox.BrailleTable.Table>} */
|
| + /** @type {!Array<cvox.BrailleTable.Table>} */
|
| cvox.OptionsPage.brailleTables = tables;
|
| cvox.OptionsPage.populateBrailleTablesSelect();
|
| });
|
|
|