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

Unified Diff: remoting/webapp/crd/js/it2me_helpee_channel.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/identity.js ('k') | remoting/webapp/crd/js/it2me_helper_channel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/it2me_helpee_channel.js
diff --git a/remoting/webapp/crd/js/it2me_helpee_channel.js b/remoting/webapp/crd/js/it2me_helpee_channel.js
index 65614f4566e2736826704b2c903325ba9d00e57e..3ab8762fde71140926a192023480395dd4140891 100644
--- a/remoting/webapp/crd/js/it2me_helpee_channel.js
+++ b/remoting/webapp/crd/js/it2me_helpee_channel.js
@@ -161,7 +161,7 @@ remoting.It2MeHelpeeChannel.prototype.dispose = function() {
/**
* Message Handler for incoming runtime messages from Hangouts.
*
- * @param {{method:string, data:Object.<string,*>}} message
+ * @param {{method:string, data:Object<string,*>}} message
* @private
*/
remoting.It2MeHelpeeChannel.prototype.onHangoutMessage_ = function(message) {
@@ -197,7 +197,7 @@ remoting.It2MeHelpeeChannel.prototype.onHangoutMessage_ = function(message) {
/**
* Queries the |hostInstaller| for the installation status.
*
- * @param {{method:string, data:Object.<string,*>}} message
+ * @param {{method:string, data:Object<string,*>}} message
* @private
*/
remoting.It2MeHelpeeChannel.prototype.handleIsHostInstalled_ =
@@ -221,7 +221,7 @@ remoting.It2MeHelpeeChannel.prototype.handleIsHostInstalled_ =
};
/**
- * @param {{method:string, data:Object.<string,*>}} message
+ * @param {{method:string, data:Object<string,*>}} message
* @private
*/
remoting.It2MeHelpeeChannel.prototype.handleDownloadHost_ = function(message) {
@@ -244,7 +244,7 @@ remoting.It2MeHelpeeChannel.prototype.onHangoutDisconnect_ = function() {
/**
* Connects to the It2Me Native messaging Host and retrieves the access code.
*
- * @param {{method:string, data:Object.<string,*>}} message
+ * @param {{method:string, data:Object<string,*>}} message
* @private
*/
remoting.It2MeHelpeeChannel.prototype.handleConnect_ =
@@ -473,7 +473,7 @@ remoting.It2MeHelpeeChannel.prototype.onHostStateChanged_ = function(state) {
};
/**
- * @param {?{method:string, data:Object.<string,*>}} incomingMessage
+ * @param {?{method:string, data:Object<string,*>}} incomingMessage
* @param {string|Error} error
* @private
*/
« no previous file with comments | « remoting/webapp/crd/js/identity.js ('k') | remoting/webapp/crd/js/it2me_helper_channel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698