Index: chrome/browser/resources/cryptotoken/cryptotokenorigincheck.js |
diff --git a/chrome/browser/resources/cryptotoken/cryptotokenorigincheck.js b/chrome/browser/resources/cryptotoken/cryptotokenorigincheck.js |
index dec9532a3821fb9b99f5d9b42a779317c161dac6..3e4ac5e05590866a790f9c370a37bb5eb77d3cb7 100644 |
--- a/chrome/browser/resources/cryptotoken/cryptotokenorigincheck.js |
+++ b/chrome/browser/resources/cryptotoken/cryptotokenorigincheck.js |
@@ -22,8 +22,8 @@ function CryptoTokenOriginChecker() { |
/** |
* Checks whether the origin is allowed to claim the app ids. |
* @param {string} origin The origin claiming the app id. |
- * @param {!Array.<string>} appIds The app ids being claimed. |
- * @return {Promise.<boolean>} A promise for the result of the check. |
+ * @param {!Array<string>} appIds The app ids being claimed. |
+ * @return {Promise<boolean>} A promise for the result of the check. |
*/ |
CryptoTokenOriginChecker.prototype.canClaimAppIds = function(origin, appIds) { |
var appIdChecks = appIds.map(this.checkAppId_.bind(this, origin)); |
@@ -38,7 +38,7 @@ CryptoTokenOriginChecker.prototype.canClaimAppIds = function(origin, appIds) { |
* Checks if a single appId can be asserted by the given origin. |
* @param {string} origin The origin. |
* @param {string} appId The appId to check |
- * @return {Promise.<boolean>} A promise for the result of the check |
+ * @return {Promise<boolean>} A promise for the result of the check |
* @private |
*/ |
CryptoTokenOriginChecker.prototype.checkAppId_ = |