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

Unified Diff: chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager.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/braille/braille_translator_manager.js
diff --git a/chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager.js b/chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager.js
index bc76d92d6ef54d47a1ff1bef47c8c953f49bbecc..500c5b3f09fac4001c2e7bbb6bcd3484455bca54 100644
--- a/chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager.js
+++ b/chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager.js
@@ -26,12 +26,12 @@ cvox.BrailleTranslatorManager = function(opt_liblouisForTest) {
chrome.extension.getURL('braille/liblouis_nacl.nmf'),
chrome.extension.getURL('braille/tables'));
/**
- * @type {!Array.<function()>}
+ * @type {!Array<function()>}
* @private
*/
this.changeListeners_ = [];
/**
- * @type {!Array.<cvox.BrailleTable.Table>}
+ * @type {!Array<cvox.BrailleTable.Table>}
* @private
*/
this.tables_ = [];
@@ -221,7 +221,7 @@ cvox.BrailleTranslatorManager.prototype = {
},
/**
- * @return {!Array.<cvox.BrailleTable.Table>} The currently loaded braille
+ * @return {!Array<cvox.BrailleTable.Table>} The currently loaded braille
* tables, or an empty array if they are not yet loaded.
*/
getTablesForTest: function() {

Powered by Google App Engine
This is Rietveld 408576698