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

Unified Diff: chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.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/walkers/table_shifter.js
diff --git a/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js b/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
index 1e8ade6bdc2383468b4315b8ec6bd46604b3ac39..1f9421e96bf100b13da2910532ca1b17613b752d 100644
--- a/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
+++ b/chrome/browser/resources/chromeos/chromevox/walkers/table_shifter.js
@@ -71,8 +71,8 @@ cvox.TableShifter.prototype.getName = function() {
* @override
* @suppress {checkTypes} actual parameter 2 of
* cvox.Msgs.prototype.getMsg does not match formal parameter
- * found : Array.<number>
- * required: (Array.<string>|null|undefined)
+ * found : Array<number>
+ * required: (Array<string>|null|undefined)
*/
cvox.TableShifter.prototype.getDescription = function(prevSel, sel) {
var descs = this.currentWalker_.getDescription(prevSel, sel);

Powered by Google App Engine
This is Rietveld 408576698