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

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

Issue 2900253006: WebUI: Fix more violations of no-extra-semi lint rule. (Closed)
Patch Set: clang-format Created 3 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/gnubby.js
diff --git a/chrome/browser/resources/cryptotoken/gnubby.js b/chrome/browser/resources/cryptotoken/gnubby.js
index b0493cba0c45682c65edd9843d7a52e004cf960c..410ec29121857509d32a46a9647f89566e32b89e 100644
--- a/chrome/browser/resources/cryptotoken/gnubby.js
+++ b/chrome/browser/resources/cryptotoken/gnubby.js
@@ -307,7 +307,7 @@ Gnubby.prototype.read_ = function(cmd, timeout, cb) {
window.setTimeout(function() { c(a, b); }, 0);
}
if (self.closingWhenIdle) self.idleClose_();
- };
+ }
function read_timeout() {
if (!callback || !tid) return; // Already done.
@@ -322,7 +322,7 @@ Gnubby.prototype.read_ = function(cmd, timeout, cb) {
tid = null;
schedule_cb(-GnubbyDevice.TIMEOUT);
- };
+ }
function cont_frame() {
if (!callback || !tid) return; // Already done.
@@ -662,7 +662,7 @@ Gnubby.prototype.sync = function(cb) {
// Done.
callback(-GnubbyDevice.OK, f);
- };
+ }
function timeoutLoop() {
if (done) return;
@@ -677,7 +677,7 @@ Gnubby.prototype.sync = function(cb) {
sendSentinel();
self.notifyFrame_(checkSentinel);
tid = window.setTimeout(timeoutLoop, 500);
- };
+ }
var sendSentinel;
var sentinelEquals;

Powered by Google App Engine
This is Rietveld 408576698