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

Unified Diff: chrome/browser/resources/downloads/downloads.js

Issue 917093003: Shorten Closure template notation from Array.<*> to Array<*>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cvox 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/downloads/downloads.js
diff --git a/chrome/browser/resources/downloads/downloads.js b/chrome/browser/resources/downloads/downloads.js
index ab904b8ee1b9de5b730d0341b2ab198a213af0dd..d2d767ca1117cd828c8e3a519ff30036d0568644 100644
--- a/chrome/browser/resources/downloads/downloads.js
+++ b/chrome/browser/resources/downloads/downloads.js
@@ -182,7 +182,7 @@ DownloadFocusRow.prototype = {
*/
function Downloads() {
/**
- * @type {!Object.<string, Download>}
+ * @type {!Object<string, Download>}
* @private
*/
this.downloads_ = {};
@@ -1060,7 +1060,7 @@ function clearAll() {
/**
* Our history system calls this function with results from searches or when
* downloads are added or removed.
- * @param {Array.<Object>} results List of updates.
+ * @param {Array<Object>} results List of updates.
*/
function downloadsList(results) {
if (downloads && downloads.isUpdateNeeded(results)) {
@@ -1076,7 +1076,7 @@ function downloadsList(results) {
/**
* When a download is updated (progress, state change), this is called.
- * @param {Array.<Object>} results List of updates for the download process.
+ * @param {Array<Object>} results List of updates for the download process.
*/
function downloadUpdated(results) {
// Sometimes this can get called too early.

Powered by Google App Engine
This is Rietveld 408576698