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

Unified Diff: remoting/webapp/browser_test/mock_host_list_api.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/base/js/window_shape.js ('k') | remoting/webapp/browser_test/mock_identity.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « remoting/webapp/base/js/window_shape.js ('k') | remoting/webapp/browser_test/mock_identity.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698