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

Unified Diff: chrome/browser/resources/cryptotoken/usbsignhandler.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/usbsignhandler.js
diff --git a/chrome/browser/resources/cryptotoken/usbsignhandler.js b/chrome/browser/resources/cryptotoken/usbsignhandler.js
index 2fb85139a1d0b5f4a2b193bd47cb29658833557e..d06b529708ec5e3f1ea677945cd0cf220ebfe8cb 100644
--- a/chrome/browser/resources/cryptotoken/usbsignhandler.js
+++ b/chrome/browser/resources/cryptotoken/usbsignhandler.js
@@ -22,7 +22,7 @@ function UsbSignHandler(request) {
this.notified_ = false;
/** @private {boolean} */
this.anyGnubbiesFound_ = false;
- /** @private {!Array.<!Gnubby>} */
+ /** @private {!Array<!Gnubby>} */
this.notEnrolledGnubbies_ = [];
}
@@ -167,7 +167,7 @@ UsbSignHandler.prototype.sendBogusEnroll_ = function(gnubby) {
self.notifyError_(DeviceStatusCodes.INVALID_DATA_STATUS);
}
gnubby.enroll(
- /** @type {Array.<number>} */ (enrollChallenge),
+ /** @type {Array<number>} */ (enrollChallenge),
UsbSignHandler.BOGUS_APP_ID_HASH,
self.enrollCallback_.bind(self, gnubby));
});
« no previous file with comments | « chrome/browser/resources/cryptotoken/usbgnubbyfactory.js ('k') | chrome/browser/resources/cryptotoken/util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698