| Index: chrome/browser/resources/local_discovery/local_discovery.js
|
| diff --git a/chrome/browser/resources/local_discovery/local_discovery.js b/chrome/browser/resources/local_discovery/local_discovery.js
|
| index a372f8e597cc49c78da54afe2f38f3b6e6f1ba53..9d437aa721738456611b4b4851e56fc8bb8b3b13 100644
|
| --- a/chrome/browser/resources/local_discovery/local_discovery.js
|
| +++ b/chrome/browser/resources/local_discovery/local_discovery.js
|
| @@ -35,7 +35,7 @@ cr.define('local_discovery', function() {
|
|
|
| /**
|
| * Map of service names to corresponding service objects.
|
| - * @type {Object.<string,Service>}
|
| + * @type {Object<string,Service>}
|
| */
|
| var devices = {};
|
|
|
| @@ -341,7 +341,7 @@ cr.define('local_discovery', function() {
|
|
|
| /**
|
| * Create the DOM for a cloud device described by the device section.
|
| - * @param {Array.<Object>} devices_list List of devices.
|
| + * @param {Array<Object>} devices_list List of devices.
|
| */
|
| function createCloudDeviceDOM(device) {
|
| var devicesDomElement = document.createElement('div');
|
| @@ -366,7 +366,7 @@ cr.define('local_discovery', function() {
|
|
|
| /**
|
| * Handle a list of cloud devices available to the user globally.
|
| - * @param {Array.<Object>} devices_list List of devices.
|
| + * @param {Array<Object>} devices_list List of devices.
|
| */
|
| function onCloudDeviceListAvailable(devices_list) {
|
| var devicesListLength = devices_list.length;
|
|
|