Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(383)

Unified Diff: webkit/glue/devtools/js/devtools.js

Issue 159834: Get the web inspector limping along. (Closed)
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/devtools/js/devtools.html ('k') | webkit/glue/devtools/js/tests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
};
« no previous file with comments | « webkit/glue/devtools/js/devtools.html ('k') | webkit/glue/devtools/js/tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698