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

Unified Diff: chrome/browser/resources/cryptotoken/gnubby-u2f.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/gnubby-u2f.js
diff --git a/chrome/browser/resources/cryptotoken/gnubby-u2f.js b/chrome/browser/resources/cryptotoken/gnubby-u2f.js
index d5134151a9b6c2a68b2437bd641c562cc50a876d..a5ae8b566660e1994f0490086c65a331b6033e76 100644
--- a/chrome/browser/resources/cryptotoken/gnubby-u2f.js
+++ b/chrome/browser/resources/cryptotoken/gnubby-u2f.js
@@ -35,8 +35,8 @@ Gnubby.U2F_V1 = 'U2F_V1';
Gnubby.U2F_V2 = 'U2F_V2';
/** Perform enrollment
- * @param {Array.<number>|ArrayBuffer|Uint8Array} challenge Enrollment challenge
- * @param {Array.<number>|ArrayBuffer|Uint8Array} appIdHash Hashed application
+ * @param {Array<number>|ArrayBuffer|Uint8Array} challenge Enrollment challenge
+ * @param {Array<number>|ArrayBuffer|Uint8Array} appIdHash Hashed application
* id
* @param {function(...)} cb Result callback
* @param {boolean=} opt_individualAttestation Request the individual
@@ -66,11 +66,11 @@ Gnubby.prototype.enroll = function(challenge, appIdHash, cb,
};
/** Request signature
- * @param {Array.<number>|ArrayBuffer|Uint8Array} challengeHash Hashed
+ * @param {Array<number>|ArrayBuffer|Uint8Array} challengeHash Hashed
* signature challenge
- * @param {Array.<number>|ArrayBuffer|Uint8Array} appIdHash Hashed application
+ * @param {Array<number>|ArrayBuffer|Uint8Array} appIdHash Hashed application
* id
- * @param {Array.<number>|ArrayBuffer|Uint8Array} keyHandle Key handle to use
+ * @param {Array<number>|ArrayBuffer|Uint8Array} keyHandle Key handle to use
* @param {function(...)} cb Result callback
* @param {boolean=} opt_nowink Request signature without winking
* (e.g. during enroll)
« no previous file with comments | « chrome/browser/resources/cryptotoken/gnubby.js ('k') | chrome/browser/resources/cryptotoken/gnubbydevice.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698