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

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

Issue 924083004: Shorten Closure template notation from Array.<*> to Array<*> in cvox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/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();
});

Powered by Google App Engine
This is Rietveld 408576698