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

Unified Diff: chrome/browser/resources/cryptotoken/signhelper.js

Issue 308173002: Fix race and remove unused features in cryptotoken extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix type annotation Created 6 years, 7 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/signhelper.js
diff --git a/chrome/browser/resources/cryptotoken/signhelper.js b/chrome/browser/resources/cryptotoken/signhelper.js
index 1b615675c19280443f8758fea098c8caa6e90742..8b846d447a18ca8a9b08d661046d565e64811d65 100644
--- a/chrome/browser/resources/cryptotoken/signhelper.js
+++ b/chrome/browser/resources/cryptotoken/signhelper.js
@@ -37,12 +37,10 @@ function SignHelperFactory() {}
* interested in the result of a sign request.
* @param {function(number, boolean)} errorCb Called when a sign request fails
* with an error code and whether any gnubbies were found.
- * @param {function(SignHelperChallenge, string)} successCb Called with the
- * signature produced by a successful sign request.
- * @param {(function(number, boolean)|undefined)} opt_progressCb Called with
- * progress updates to the sign request.
+ * @param {function(SignHelperChallenge, string, string=)} successCb Called with
+ * the signature produced by a successful sign request.
* @param {string=} opt_logMsgUrl A URL to post log messages to.
* @return {SignHelper} The newly created helper.
*/
SignHelperFactory.prototype.createHelper =
- function(timer, errorCb, successCb, opt_progressCb, opt_logMsgUrl) {};
+ function(timer, errorCb, successCb, opt_logMsgUrl) {};
« no previous file with comments | « chrome/browser/resources/cryptotoken/signer.js ('k') | chrome/browser/resources/cryptotoken/usbsignhelper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698