| Index: remoting/webapp/browser_test/mock_host_list_api.js
|
| diff --git a/remoting/webapp/browser_test/mock_host_list_api.js b/remoting/webapp/browser_test/mock_host_list_api.js
|
| index 144c20fb397ad6a8190ae9a92b86557224b7d1c6..c318cd5092bb9d50fed938eb8b855eae4277595a 100644
|
| --- a/remoting/webapp/browser_test/mock_host_list_api.js
|
| +++ b/remoting/webapp/browser_test/mock_host_list_api.js
|
| @@ -17,7 +17,7 @@ var remoting = remoting || {};
|
| * @implements {remoting.HostListApi}
|
| */
|
| remoting.MockHostListApi = function() {
|
| - /** @type {Array.<remoting.Host>} */
|
| + /** @type {Array<remoting.Host>} */
|
| this.hosts = [
|
| {
|
| 'hostName': 'Online host',
|
| @@ -41,7 +41,7 @@ remoting.MockHostListApi = function() {
|
| };
|
|
|
| /**
|
| - * @param {function(Array.<remoting.Host>):void} onDone
|
| + * @param {function(Array<remoting.Host>):void} onDone
|
| * @param {function(remoting.Error):void} onError
|
| */
|
| remoting.MockHostListApi.prototype.get = function(onDone, onError) {
|
|
|