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

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

Issue 2617663002: WIP: run clang-format-js on lots of things (Closed)
Patch Set: merge Created 3 years, 11 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/inherits.js
diff --git a/chrome/browser/resources/cryptotoken/inherits.js b/chrome/browser/resources/cryptotoken/inherits.js
index 5fafea418e194884d22e31b48a65b4d1009c7599..299058cc88bee7247882689bb84d670235a9a7a6 100644
--- a/chrome/browser/resources/cryptotoken/inherits.js
+++ b/chrome/browser/resources/cryptotoken/inherits.js
@@ -12,8 +12,7 @@
// Closure.
function inherits(childCtor, parentCtor) {
/** @constructor */
- function tempCtor() {
- }
+ function tempCtor() {}
tempCtor.prototype = parentCtor.prototype;
childCtor.prototype = new tempCtor;
childCtor.prototype.constructor = childCtor;
« no previous file with comments | « chrome/browser/resources/cryptotoken/individualattest.js ('k') | chrome/browser/resources/cryptotoken/multiplesigner.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698