summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-04 07:51:27 +0000
committerpfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-04 07:51:27 +0000
commit58ba4270d23158cdd23741f40a996845e0c759db (patch)
treedc390b4abd77efec90335e97b86615ec9207e522
parent99dc0d42e423a87a9dbe03c1b52ada5131d2fac7 (diff)
downloadchromium_src-58ba4270d23158cdd23741f40a996845e0c759db.zip
chromium_src-58ba4270d23158cdd23741f40a996845e0c759db.tar.gz
chromium_src-58ba4270d23158cdd23741f40a996845e0c759db.tar.bz2
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
-rw-r--r--webkit/glue/devtools/js/devtools.js6
1 files 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) {
};