summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-18 22:16:54 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-18 22:16:54 +0000
commitbb1909741bc796f143266897d50bd29a5ebb2602 (patch)
tree5523df7ee321a2c4c3f822c2025483cf55737a61
parentfaa2a45bf31af9e1131bb0cfa17ab1e2400ec0e4 (diff)
downloadchromium_src-bb1909741bc796f143266897d50bd29a5ebb2602.zip
chromium_src-bb1909741bc796f143266897d50bd29a5ebb2602.tar.gz
chromium_src-bb1909741bc796f143266897d50bd29a5ebb2602.tar.bz2
Remove unused function.
BUG=90857 Review URL: http://codereview.chromium.org/8346008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106149 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/resources/net_internals/util.js11
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) {