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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/chromevox_json.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/common/chromevox_json.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/chromevox_json.js b/chrome/browser/resources/chromeos/chromevox/common/chromevox_json.js
index ae18d75a7262d2a19d0c94c1047ceb581d45fd47..abee04a9e405cb3d2e774dcc71e39946ddb929a1 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/chromevox_json.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/chromevox_json.js
@@ -227,7 +227,7 @@ if (window.JSON && window.JSON.toString() == '[object JSON]') {
if (typeof cvox.ChromeVoxJSON.stringify !== 'function') {
/**
* @param {*} value Input object.
- * @param {(Array.<string>|(function(string, *) : *)|null)=} replacer
+ * @param {(Array<string>|(function(string, *) : *)|null)=} replacer
* Replacer array or function.
* @param {(number|string|null)=} space Whitespace character.
* @return {string} json string which represents jsonObj.

Powered by Google App Engine
This is Rietveld 408576698