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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/background/externs.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/externs.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/externs.js b/chrome/browser/resources/chromeos/chromevox/chromevox/background/externs.js
index 07e22c2fb470a73149c315681c7d24a9dffc1ca4..fc5a149acba7cc34a76c7fcfcad091a210b6c5fe 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/externs.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/externs.js
@@ -47,13 +47,13 @@ chrome.accessibilityPrivate.setNativeAccessibilityEnabled = function(on) {
/**
* @param {number} tabId
- * @param {function(Array.<!Object>)} callback
+ * @param {function(Array<!Object>)} callback
*/
chrome.accessibilityPrivate.getAlertsForTab =
function(tabId, callback) {};
/**
- * @param {Array.<{left: number, top: number, width: number, height: number}>}
+ * @param {Array<{left: number, top: number, width: number, height: number}>}
* rects The bounding rects to draw focus ring(s) around, in global
* screen coordinates.
*/

Powered by Google App Engine
This is Rietveld 408576698