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

Unified Diff: chrome/browser/resources/chromeos/chromevox/braille/braille_input_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/braille/braille_input_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler.js b/chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler.js
index 1232d122ae98ac4f4374994d53305dfb98f632c8..f8c54d8a8d43029f1e1ff0fc0cb2bc90c7da298e 100644
--- a/chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/braille/braille_input_handler.js
@@ -55,7 +55,7 @@ cvox.BrailleInputHandler = function(translatorManager) {
this.activeTranslator_ = null;
/**
* Braille cells that have been typed by the user so far.
- * @type {Array.<number>}
+ * @type {Array<number>}
* @private
*/
this.cells_ = [];
@@ -81,7 +81,7 @@ cvox.BrailleInputHandler = function(translatorManager) {
* List of strings that we expect to be set as preceding text of the
* selection. This is populated when we send text changes to the IME so that
* our own changes don't reset the pending cells.
- * @type {Array.<string>}
+ * @type {Array<string>}
* @private
*/
this.pendingTextsBefore_ = [];
@@ -91,7 +91,7 @@ cvox.BrailleInputHandler = function(translatorManager) {
* This is necessary because the IME is activated on the first braille
* dots command, but we'll receive the command in parallel. To work around
* the race, we store the cell entered until we can submit it to the IME.
- * @type {Array.<number>}
+ * @type {Array<number>}
* @private
*/
this.pendingCells_ = [];

Powered by Google App Engine
This is Rietveld 408576698