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

Unified Diff: chrome/browser/resources/options/chromeos/display_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/display_options.js
diff --git a/chrome/browser/resources/options/chromeos/display_options.js b/chrome/browser/resources/options/chromeos/display_options.js
index 2bd934ec1bdba1862f831f03291efcca3b6496c5..64bebd1dfbbd3a1acc230d12454806a8c55ed978 100644
--- a/chrome/browser/resources/options/chromeos/display_options.js
+++ b/chrome/browser/resources/options/chromeos/display_options.js
@@ -6,13 +6,13 @@ cr.exportPath('options');
/**
* @typedef {{
- * availableColorProfiles: Array.<{profileId: number, name: string}>,
+ * availableColorProfiles: Array<{profileId: number, name: string}>,
* colorProfile: number,
* height: number,
* id: string,
* isInternal: boolean,
* isPrimary: boolean,
- * resolutions: Array.<{width: number, height: number, originalWidth: number,
+ * resolutions: Array<{width: number, height: number, originalWidth: number,
* originalHeight: number, deviceScaleFactor: number, scale: number,
* refreshRate: number, isBest: boolean, selected: boolean}>,
* name: string,
@@ -125,7 +125,7 @@ cr.define('options', function() {
/**
* The array of current output displays. It also contains the display
* rectangles currently rendered on screen.
- * @type {Array.<options.DisplayInfo>}
+ * @type {Array<options.DisplayInfo>}
* @private
*/
displays_: [],
@@ -906,7 +906,7 @@ cr.define('options', function() {
/**
* Called when the display arrangement has changed.
* @param {boolean} mirroring Whether current mode is mirroring or not.
- * @param {Array.<options.DisplayInfo>} displays The list of the display
+ * @param {Array<options.DisplayInfo>} displays The list of the display
* information.
* @param {options.SecondaryDisplayLayout} layout The layout strategy.
* @param {number} offset The offset of the secondary display.

Powered by Google App Engine
This is Rietveld 408576698