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

Unified Diff: chrome/browser/resources/options/chromeos/change_picture_options.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/options/chromeos/change_picture_options.js
diff --git a/chrome/browser/resources/options/chromeos/change_picture_options.js b/chrome/browser/resources/options/chromeos/change_picture_options.js
index e2866f9915661bf6e068f115a0716b8f8ad306e2..de6670a4c7b9c90c2c584c5d398c95278d43cda0 100644
--- a/chrome/browser/resources/options/chromeos/change_picture_options.js
+++ b/chrome/browser/resources/options/chromeos/change_picture_options.js
@@ -10,7 +10,7 @@ cr.define('options', function() {
/**
* Array of button URLs used on this page.
- * @type {Array.<string>}
+ * @type {Array<string>}
* @const
*/
var ButtonImageUrls = [
@@ -303,7 +303,7 @@ cr.define('options', function() {
/**
* Appends default images to the image grid. Should only be called once.
- * @param {Array.<{url: string, author: string, website: string}>}
+ * @param {Array<{url: string, author: string, website: string}>}
* imagesData An array of default images data, including URL, author and
* website.
* @private

Powered by Google App Engine
This is Rietveld 408576698