Chromium Code Reviews| Index: runtime/include/dart_debugger_api.h |
| =================================================================== |
| --- runtime/include/dart_debugger_api.h (revision 3444) |
| +++ runtime/include/dart_debugger_api.h (working copy) |
| @@ -55,6 +55,17 @@ |
| /** |
| + * Deletes the given \breakpoint. |
| + * |
| + * Requires there to be a current isolate. |
| + * |
| + * \return A handle to the True object if no error occurs. |
| + */ |
| +DART_EXPORT Dart_Handle Dart_DeleteBreakpoint( |
| + Dart_Breakpoint breakpoint); |
| + |
|
siva
2012/01/20 21:26:29
Do we also need a Dart_DeleteAllBreakpoints functi
hausner
2012/01/20 22:20:32
I don't have a good understanding of what we reall
|
| + |
| +/** |
| * Installs a handler callback function that gets called by the VM |
| * when a breakpoint has been reached. |
| * |