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

Unified Diff: chrome/third_party/chromevox/chromevox/injected/mathjax.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/third_party/chromevox/chromevox/injected/mathjax.js
diff --git a/chrome/third_party/chromevox/chromevox/injected/mathjax.js b/chrome/third_party/chromevox/chromevox/injected/mathjax.js
index 754aa04fb58e8800dd68b27b1219c2176c0fd243..023c1ccf483ae0b75f10ad7ff3c39cec36a71530 100644
--- a/chrome/third_party/chromevox/chromevox/injected/mathjax.js
+++ b/chrome/third_party/chromevox/chromevox/injected/mathjax.js
@@ -46,7 +46,7 @@ if (typeof(goog) != 'undefined' && goog.require) {
* Post a message to Chromevox.
* @param {string} cmd The command to be executed in Chromevox.
* @param {string} callbackId A string representing the callback id.
- * @param {Object.<string, *>} args Dictionary of arguments.
+ * @param {Object<string, *>} args Dictionary of arguments.
*/
cvox.MathJax.postMessage = function(cmd, callbackId, args) {
channel_.port1.postMessage({'cmd': cmd, 'id': callbackId, 'args': args});

Powered by Google App Engine
This is Rietveld 408576698