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

Unified Diff: remoting/webapp/crd/js/host_daemon_facade.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 | « remoting/webapp/crd/js/host_controller.js ('k') | remoting/webapp/crd/js/host_installer.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/host_daemon_facade.js
diff --git a/remoting/webapp/crd/js/host_daemon_facade.js b/remoting/webapp/crd/js/host_daemon_facade.js
index de5e335e1acbe8753111e60cb78ba436c7846c37..193a7562a609a18097f2e2a5e0d8d962592627dd 100644
--- a/remoting/webapp/crd/js/host_daemon_facade.js
+++ b/remoting/webapp/crd/js/host_daemon_facade.js
@@ -23,7 +23,7 @@ remoting.HostDaemonFacade = function() {
this.nextId_ = 0;
/**
- * @type {Object.<number, remoting.HostDaemonFacade.PendingReply>}
+ * @type {Object<number, remoting.HostDaemonFacade.PendingReply>}
* @private
*/
this.pendingReplies_ = {};
@@ -34,10 +34,10 @@ remoting.HostDaemonFacade = function() {
/** @type {string} @private */
this.version_ = '';
- /** @type {Array.<remoting.HostController.Feature>} @private */
+ /** @type {Array<remoting.HostController.Feature>} @private */
this.supportedFeatures_ = [];
- /** @type {Array.<function(boolean):void>} @private */
+ /** @type {Array<function(boolean):void>} @private */
this.afterInitializationTasks_ = [];
/**
@@ -504,7 +504,7 @@ remoting.HostDaemonFacade.prototype.getDaemonState =
/**
* Retrieves the list of paired clients.
*
- * @param {function(Array.<remoting.PairedClient>):void} onDone Callback to
+ * @param {function(Array<remoting.PairedClient>):void} onDone Callback to
* return result.
* @param {function(remoting.Error):void} onError Callback to call on error.
*/
« no previous file with comments | « remoting/webapp/crd/js/host_controller.js ('k') | remoting/webapp/crd/js/host_installer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698