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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/script_installer.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/script_installer.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/script_installer.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/script_installer.js
index 4c112b5e4c8b338294beb5dd31b0bc35ce2c40a2..3c611964c58631ec6875c66b82d813f030401263 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/script_installer.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/script_installer.js
@@ -20,7 +20,7 @@ cvox.ScriptInstaller.blacklistPattern = /chrome:\/\/|chrome-extension:\/\//;
/**
* Installs a script in the web page.
- * @param {Array.<string>} srcs An array of URLs of scripts.
+ * @param {Array<string>} srcs An array of URLs of scripts.
* @param {string} uid A unique id. This function won't install the same set of
* scripts twice.
* @param {function()=} opt_onload A function called when the script has loaded.

Powered by Google App Engine
This is Rietveld 408576698