| Index: webkit/glue/devtools/js/devtools.js
|
| diff --git a/webkit/glue/devtools/js/devtools.js b/webkit/glue/devtools/js/devtools.js
|
| index 21dcf6cc7b1b5595d0285b6f60ee4a22f4691c80..6ca4127c394a399323bb43a1e80b711a7ebd52a2 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) {
|
| };
|
|
|