| Index: webkit/glue/devtools/js/inspector_controller_impl.js
|
| ===================================================================
|
| --- webkit/glue/devtools/js/inspector_controller_impl.js (revision 14822)
|
| +++ webkit/glue/devtools/js/inspector_controller_impl.js (working copy)
|
| @@ -123,4 +123,21 @@
|
| };
|
|
|
|
|
| +/**
|
| + * @override
|
| + */
|
| +devtools.InspectorControllerImpl.prototype.pauseOnExceptions = function() {
|
| + return devtools.tools.getDebuggerAgent().pauseOnExceptions();
|
| +};
|
| +
|
| +
|
| +/**
|
| + * @override
|
| + */
|
| +devtools.InspectorControllerImpl.prototype.setPauseOnExceptions = function(
|
| + value) {
|
| + return devtools.tools.getDebuggerAgent().setPauseOnExceptions(value);
|
| +};
|
| +
|
| +
|
| var InspectorController = new devtools.InspectorControllerImpl();
|
|
|