diff options
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/devtools/js/inspector_controller_impl.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/webkit/glue/devtools/js/inspector_controller_impl.js b/webkit/glue/devtools/js/inspector_controller_impl.js index 03ad405..96531d14 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(). |