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

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

Issue 178053: DevTools: Close inspector controller on detach; hide node highlight on detach... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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/debugger_agent.js ('k') | webkit/glue/webdevtoolsagent_impl.cc » ('j') | 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
===================================================================
--- webkit/glue/devtools/js/inspector_controller_impl.js (revision 25017)
+++ webkit/glue/devtools/js/inspector_controller_impl.js (working copy)
@@ -40,6 +40,7 @@
this.installInjectedScriptDelegate_('pushNodeToFrontend');
this.installInjectedScriptDelegate_('performSearch');
this.installInjectedScriptDelegate_('searchCanceled');
+ this.installInjectedScriptDelegate_('openInInspectedWindow');
};
goog.inherits(devtools.InspectorControllerImpl,
devtools.InspectorController);
@@ -235,14 +236,6 @@
/**
* @override
*/
-devtools.InspectorControllerImpl.prototype.getCallFrames = function(callback) {
- callback(devtools.tools.getDebuggerAgent().getCallFrames());
-};
-
-
-/**
- * @override
- */
devtools.InspectorControllerImpl.prototype.evaluateInCallFrame =
function(callFrameId, code, callback) {
devtools.tools.getDebuggerAgent().evaluateInCallFrame(callFrameId, code,
« no previous file with comments | « webkit/glue/devtools/js/debugger_agent.js ('k') | webkit/glue/webdevtoolsagent_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698