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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.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/injected/keyboard_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js
index 89609ba9b5b8a0e99bd9b938b23252d50a7ef18b..f486e039a036b107b4b6c8b48f03f441a726de96 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js
@@ -44,9 +44,9 @@ cvox.ChromeVoxKbHandler.loadKeyToFunctionsTable = function(
* Converts the key bindings table into an array that is sorted by the lengths
* of the key bindings. After the sort, the key bindings that describe single
* keys will come before the key bindings that describe multiple keys.
- * @param {Object.<string, string>} keyToFunctionsTable Contains each key
+ * @param {Object<string, string>} keyToFunctionsTable Contains each key
* binding and its associated function name.
- * @return {Array.<Array.<string>>} The sorted key bindings table in
+ * @return {Array<Array<string>>} The sorted key bindings table in
* array form. Each entry in the array is itself an array containing the
* key binding and its associated function name.
* @private

Powered by Google App Engine
This is Rietveld 408576698