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

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

Issue 372050: DevTools: fix 'super' call, route it to new InspectorControllerStub. (Closed)
Patch Set: Created 11 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/js/inspector_controller_impl.js
diff --git a/webkit/glue/devtools/js/inspector_controller_impl.js b/webkit/glue/devtools/js/inspector_controller_impl.js
index 03ad405cc62a3de7555c68084895b934dbc83d79..96531d14f3da2cf39d6d00eed12c82d11b5c4be5 100644
--- a/webkit/glue/devtools/js/inspector_controller_impl.js
+++ b/webkit/glue/devtools/js/inspector_controller_impl.js
@@ -5,7 +5,6 @@
/**
* @fileoverview DevTools' implementation of the InspectorController API.
*/
-goog.require('devtools.InspectorController');
goog.provide('devtools.InspectorControllerImpl');
@@ -94,7 +93,7 @@ devtools.InspectorControllerImpl.prototype.search = function(sourceRow, query) {
* {@inheritDoc}.
*/
devtools.InspectorControllerImpl.prototype.toggleNodeSearch = function() {
- devtools.InspectorController.prototype.toggleNodeSearch.call(this);
+ WebInspector.InspectorControllerStub.prototype.toggleNodeSearch.call(this);
this.callInspectorController_.call(this, 'toggleNodeSearch');
if (!this.searchingForNode()) {
// This is called from ElementsPanel treeOutline's focusNodeChanged().
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698