From 58ba4270d23158cdd23741f40a996845e0c759db Mon Sep 17 00:00:00 2001 From: "pfeldman@chromium.org" Date: Tue, 4 Aug 2009 07:51:27 +0000 Subject: DevTools: add missing file from the devtools console fix. TBR=mnaganov Review URL: http://codereview.chromium.org/159851 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22372 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/devtools/js/devtools.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webkit/glue/devtools/js/devtools.js b/webkit/glue/devtools/js/devtools.js index 21dcf6c..6ca4127 100644 --- a/webkit/glue/devtools/js/devtools.js +++ b/webkit/glue/devtools/js/devtools.js @@ -877,7 +877,7 @@ WebInspector.ScriptsPanel.prototype.__defineGetter__( WebInspector.searchableViews_); -WebInspector.Console.prototype.doEvalInWindow = +WebInspector.ConsoleView.prototype.doEvalInWindow = function(expression, callback) { if (!expression ) { // Empty expression should evaluate to the global object for completions to @@ -1032,7 +1032,7 @@ Object.sortedProperties = function(obj) { })(); -WebInspector.Console.prototype._formatobject = function(object, elem) { +WebInspector.ConsoleView.prototype._formatobject = function(object, elem) { var section; if (object.handle && object.className) { object.ref = object.handle; @@ -1079,5 +1079,5 @@ WebInspector.Console.prototype._formatobject = function(object, elem) { // We do not inspect DOM nodes using $ shortcuts yet. -WebInspector.Console.prototype.addInspectedNode = function(node) { +WebInspector.ConsoleView.prototype.addInspectedNode = function(node) { }; -- cgit v1.1