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

Unified Diff: chrome/browser/resources/local_discovery/local_discovery.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/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;
« no previous file with comments | « chrome/browser/resources/identity_internals.js ('k') | chrome/browser/resources/local_ntp/instant_iframe_validation.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698