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; |