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

Unified Diff: remoting/webapp/crd/js/host_controller.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.js ('k') | remoting/webapp/crd/js/host_daemon_facade.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/host_controller.js
diff --git a/remoting/webapp/crd/js/host_controller.js b/remoting/webapp/crd/js/host_controller.js
index 3dd8c93558c8d489aa53b8cb9fe2a97724bbc848..e4c7a78193a61a6ab7694a3db755baa29c365be4 100644
--- a/remoting/webapp/crd/js/host_controller.js
+++ b/remoting/webapp/crd/js/host_controller.js
@@ -130,7 +130,7 @@ remoting.HostController.prototype.start = function(hostPin, consent, onDone,
function generateUuid() {
var random = new Uint16Array(8);
window.crypto.getRandomValues(random);
- /** @type {Array.<string>} */
+ /** @type {Array<string>} */
var e = new Array();
for (var i = 0; i < 8; i++) {
e[i] = (/** @type {number} */ (random[i]) + 0x10000).
@@ -487,7 +487,7 @@ remoting.HostController.prototype.getLocalHostId = function(onDone) {
/**
* Fetch the list of paired clients for this host.
*
- * @param {function(Array.<remoting.PairedClient>):void} onDone
+ * @param {function(Array<remoting.PairedClient>):void} onDone
* @param {function(remoting.Error):void} onError
* @return {void}
*/
« no previous file with comments | « remoting/webapp/crd/js/host.js ('k') | remoting/webapp/crd/js/host_daemon_facade.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698