| 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.
|
| */
|
|
|