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

Side by Side Diff: webkit/glue/devtools/js/inspector_controller_impl.js

Issue 99185: Pause and show call stack on exceptions (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/glue/devtools/js/inspector_controller.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview DevTools' implementation of the InspectorController API. 6 * @fileoverview DevTools' implementation of the InspectorController API.
7 */ 7 */
8 goog.require('devtools.InspectorController'); 8 goog.require('devtools.InspectorController');
9 9
10 goog.provide('devtools.InspectorControllerImpl'); 10 goog.provide('devtools.InspectorControllerImpl');
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 devtools.tools.getDebuggerAgent().stepOutOfFunction(); 116 devtools.tools.getDebuggerAgent().stepOutOfFunction();
117 }; 117 };
118 118
119 119
120 devtools.InspectorControllerImpl.prototype.stepOverStatementInDebugger = 120 devtools.InspectorControllerImpl.prototype.stepOverStatementInDebugger =
121 function() { 121 function() {
122 devtools.tools.getDebuggerAgent().stepOverStatement(); 122 devtools.tools.getDebuggerAgent().stepOverStatement();
123 }; 123 };
124 124
125 125
126 /**
127 * @override
128 */
129 devtools.InspectorControllerImpl.prototype.pauseOnExceptions = function() {
130 return devtools.tools.getDebuggerAgent().pauseOnExceptions();
131 };
132
133
134 /**
135 * @override
136 */
137 devtools.InspectorControllerImpl.prototype.setPauseOnExceptions = function(
138 value) {
139 return devtools.tools.getDebuggerAgent().setPauseOnExceptions(value);
140 };
141
142
126 var InspectorController = new devtools.InspectorControllerImpl(); 143 var InspectorController = new devtools.InspectorControllerImpl();
OLDNEW
« no previous file with comments | « webkit/glue/devtools/js/inspector_controller.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698