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

Unified Diff: remoting/webapp/crd/js/it2me_helper_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/it2me_helpee_channel.js ('k') | remoting/webapp/crd/js/it2me_service.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/it2me_helper_channel.js
diff --git a/remoting/webapp/crd/js/it2me_helper_channel.js b/remoting/webapp/crd/js/it2me_helper_channel.js
index a05ad60328ae26ca12cff53ec86f6a18fcfafe1c..5411ea381fe9311cd4f6dd98539c7907e0bd2ebb 100644
--- a/remoting/webapp/crd/js/it2me_helper_channel.js
+++ b/remoting/webapp/crd/js/it2me_helper_channel.js
@@ -144,7 +144,7 @@ remoting.It2MeHelperChannel.prototype.instanceId = function() {
};
/**
- * @param {{method:string, data:Object.<string,*>}} message
+ * @param {{method:string, data:Object<string,*>}} message
* @return {boolean} whether the message is handled or not.
* @private
*/
@@ -176,7 +176,7 @@ remoting.It2MeHelperChannel.prototype.onHangoutMessage_ = function(message) {
/**
* Disconnect the existing connection to the helpee.
*
- * @param {{method:string, data:Object.<string,*>}} message
+ * @param {{method:string, data:Object<string,*>}} message
* @private
*/
remoting.It2MeHelperChannel.prototype.closeWebapp_ =
@@ -194,7 +194,7 @@ remoting.It2MeHelperChannel.prototype.closeWebapp_ =
/**
* Launches the web app.
*
- * @param {{method:string, data:Object.<string,*>}} message
+ * @param {{method:string, data:Object<string,*>}} message
* @private
*/
remoting.It2MeHelperChannel.prototype.launchWebapp_ =
@@ -259,7 +259,7 @@ remoting.It2MeHelperChannel.prototype.onWebappDisconnect_ = function(port) {
};
/**
- * @param {{method:string, data:Object.<string,*>}} message
+ * @param {{method:string, data:Object<string,*>}} message
* @private
*/
remoting.It2MeHelperChannel.prototype.onWebappMessage_ = function(message) {
@@ -307,7 +307,7 @@ remoting.It2MeHelperChannel.prototype.unhookPorts_ = function() {
/**
* @param {chrome.runtime.Port} port
* @param {string|Error} error
- * @param {?{method:string, data:Object.<string,*>}=} opt_incomingMessage
+ * @param {?{method:string, data:Object<string,*>}=} opt_incomingMessage
* @private
*/
remoting.It2MeHelperChannel.prototype.sendErrorResponse_ =
« no previous file with comments | « remoting/webapp/crd/js/it2me_helpee_channel.js ('k') | remoting/webapp/crd/js/it2me_service.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698