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

Unified Diff: chrome/browser/resources/cryptotoken/origincheck.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
Index: chrome/browser/resources/cryptotoken/origincheck.js
diff --git a/chrome/browser/resources/cryptotoken/origincheck.js b/chrome/browser/resources/cryptotoken/origincheck.js
index ddab33e558925351291fe18658b99c79a96bd721..97077e08a8ad42f80b597e88feada954d025aaa4 100644
--- a/chrome/browser/resources/cryptotoken/origincheck.js
+++ b/chrome/browser/resources/cryptotoken/origincheck.js
@@ -20,7 +20,7 @@ function OriginChecker() {}
/**
* 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.
*/
OriginChecker.prototype.canClaimAppIds = function(origin, appIds) {};
« no previous file with comments | « chrome/browser/resources/cryptotoken/multiplesigner.js ('k') | chrome/browser/resources/cryptotoken/requestqueue.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698