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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/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/injected/externs.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/externs.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/externs.js
index 980e267114220579550f9989c06a38db061c7b61..73fae02a65d804994048b8ebbb243b9f9f9e1171 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/externs.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/externs.js
@@ -21,7 +21,7 @@ function MathJax() {}
MathJax.Callback;
/**
- * @param {Array.<*>} args
+ * @param {Array<*>} args
* @param {string} err
*/
MathJax.Callback.After = function(args, err) { };
@@ -37,7 +37,7 @@ MathJax.Jax;
/**
* @typedef {{inputID: string,
* spanID: number,
- * data: Array.<Object>,
+ * data: Array<Object>,
* id: string,
* texClass: string}}
*/
@@ -70,12 +70,12 @@ MathJax.Hub.getAllJax = function() { };
/**
* @type {{PreProcessor: Function,
- * MessageHook: function(string, function(Array.<string>)):
- * function(Array.<string>),
- * StartupHook: function(string, function(Array.<string>)):
- * function(Array.<string>),
- * LoadHook: function(string, function(Array.<string>)):
- * function(Array.<string>)}}
+ * MessageHook: function(string, function(Array<string>)):
+ * function(Array<string>),
+ * StartupHook: function(string, function(Array<string>)):
+ * function(Array<string>),
+ * LoadHook: function(string, function(Array<string>)):
+ * function(Array<string>)}}
*/
MathJax.Hub.Register;
@@ -147,8 +147,8 @@ MathJax.HTML;
* Creates an HTML element from a node tag, an object with attributes and an
* array of text content.
* @param {string} tag
- * @param {Object.<string, string>} attribs
- * @param {Array.<string>} text
+ * @param {Object<string, string>} attribs
+ * @param {Array<string>} text
*/
MathJax.HTML.Element = function(tag, attribs, text) { };

Powered by Google App Engine
This is Rietveld 408576698