diff options
-rw-r--r-- | chrome/browser/resources/net_internals/util.js | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/browser/resources/net_internals/util.js b/chrome/browser/resources/net_internals/util.js index b505b0a..5a8c06b 100644 --- a/chrome/browser/resources/net_internals/util.js +++ b/chrome/browser/resources/net_internals/util.js @@ -3,17 +3,6 @@ // found in the LICENSE file. /** - * Inherit the prototype methods from one constructor into another. - */ -function inherits(childCtor, parentCtor) { - function tempCtor() {}; - tempCtor.prototype = parentCtor.prototype; - childCtor.superClass_ = parentCtor.prototype; - childCtor.prototype = new tempCtor(); - childCtor.prototype.constructor = childCtor; -}; - -/** * Sets the width (in pixels) on a DOM node. */ function setNodeWidth(node, widthPx) { |