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

Unified Diff: remoting/webapp/base/js/application.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/app_capabilities.js ('k') | remoting/webapp/base/js/auth_dialog.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/base/js/application.js
diff --git a/remoting/webapp/base/js/application.js b/remoting/webapp/base/js/application.js
index 1b77fb0c667312a51909669d526dd671ce8d9e02..e31fb503214938f5a1f9b8fd560625d2e5ec8ddd 100644
--- a/remoting/webapp/base/js/application.js
+++ b/remoting/webapp/base/js/application.js
@@ -13,7 +13,7 @@
var remoting = remoting || {};
/**
- * @param {Array.<string>} app_capabilities Array of application capabilities.
+ * @param {Array<string>} app_capabilities Array of application capabilities.
* @constructor
*/
remoting.Application = function(app_capabilities) {
@@ -24,7 +24,7 @@ remoting.Application = function(app_capabilities) {
this.delegate_ = null;
/**
- * @type {Array.<string>}
+ * @type {Array<string>}
* @private
*/
this.app_capabilities_ = [
@@ -58,7 +58,7 @@ remoting.Application.prototype.getApplicationName = function() {
};
/**
- * @return {Array.<string>} A list of |ClientSession.Capability|s required
+ * @return {Array<string>} A list of |ClientSession.Capability|s required
* by this application.
*/
remoting.Application.prototype.getRequiredCapabilities_ = function() {
« no previous file with comments | « remoting/webapp/base/js/app_capabilities.js ('k') | remoting/webapp/base/js/auth_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698