summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/provided_file_systems.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/chromeos/provided_file_systems.js')
-rw-r--r--chromium/chrome/browser/resources/chromeos/provided_file_systems.js21
1 files changed, 10 insertions, 11 deletions
diff --git a/chromium/chrome/browser/resources/chromeos/provided_file_systems.js b/chromium/chrome/browser/resources/chromeos/provided_file_systems.js
index afdde09462e..007bf00e947 100644
--- a/chromium/chrome/browser/resources/chromeos/provided_file_systems.js
+++ b/chromium/chrome/browser/resources/chromeos/provided_file_systems.js
@@ -2,8 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-<include src="../../../../third_party/polymer_legacy/platform/platform.js">
-<include src="../../../../third_party/polymer_legacy/polymer/polymer.js">
+<include src="../../../../third_party/polymer/components/polymer/polymer.js">
/**
* Formats size to a human readable form.
@@ -47,7 +46,7 @@ Polymer('file-systems', {
/**
* List of provided file system information maps.
- * @type {Array.<Object>}
+ * @type {Array<Object>}
*/
model: []
});
@@ -107,7 +106,7 @@ Polymer('request-events', {
/**
* List of events.
- * @type {Array.<Object>}
+ * @type {Array<Object>}
*/
model: []
});
@@ -130,7 +129,7 @@ Polymer('request-timeline', {
/**
* Observes changes in the model.
- * @type {Object.<string, string>}
+ * @type {Object<string, string>}
*/
observe: {
'model.length': 'chartUpdate'
@@ -318,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: [],
@@ -368,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) {