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

Unified Diff: chrome/browser/resources/chromeos/provided_file_systems.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
« no previous file with comments | « chrome/browser/resources/chromeos/power.js ('k') | chrome/browser/resources/chromeos/user_images_grid.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/provided_file_systems.js
diff --git a/chrome/browser/resources/chromeos/provided_file_systems.js b/chrome/browser/resources/chromeos/provided_file_systems.js
index d38efd42659396e8ecec0c29ad63feedb6e49a76..007bf00e94772913f458957961c02ff63d687cce 100644
--- a/chrome/browser/resources/chromeos/provided_file_systems.js
+++ b/chrome/browser/resources/chromeos/provided_file_systems.js
@@ -46,7 +46,7 @@ Polymer('file-systems', {
/**
* List of provided file system information maps.
- * @type {Array.<Object>}
+ * @type {Array<Object>}
*/
model: []
});
@@ -106,7 +106,7 @@ Polymer('request-events', {
/**
* List of events.
- * @type {Array.<Object>}
+ * @type {Array<Object>}
*/
model: []
});
@@ -129,7 +129,7 @@ Polymer('request-timeline', {
/**
* Observes changes in the model.
- * @type {Object.<string, string>}
+ * @type {Object<string, string>}
*/
observe: {
'model.length': 'chartUpdate'
@@ -317,26 +317,26 @@ Polymer('request-timeline', {
/**
* Map of selected requests.
- * @type {Object.<number, boolean>}
+ * @type {Object<number, boolean>}
*/
selected: {},
/**
* Map of requests which has started, but are not completed yet, from
* a request id to the chart element index.
- * @type {Object.<number, number>}}
+ * @type {Object<number, number>}}
*/
active: {},
/**
* List of chart elements, calculated from the model.
- * @type {Array.<Object>}
+ * @type {Array<Object>}
*/
chart: [],
/**
* List of rows in the chart, with the last endTime value on it.
- * @type {Array.<Object>}
+ * @type {Array<Object>}
*/
rows: [],
@@ -367,14 +367,14 @@ Polymer('request-timeline', {
/**
* List of requests information maps.
- * @type {Array.<Object>}
+ * @type {Array<Object>}
*/
model: []
});
/*
* Updates the mounted file system list.
- * @param {Array.<Object>} fileSystems Array containing provided file system
+ * @param {Array<Object>} fileSystems Array containing provided file system
* information.
*/
function updateFileSystems(fileSystems) {
« no previous file with comments | « chrome/browser/resources/chromeos/power.js ('k') | chrome/browser/resources/chromeos/user_images_grid.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698