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

Unified Diff: runtime/include/dart_debugger_api.h

Issue 11028040: - Add support to interrupt a running isolate (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
Index: runtime/include/dart_debugger_api.h
===================================================================
--- runtime/include/dart_debugger_api.h (revision 13208)
+++ runtime/include/dart_debugger_api.h (working copy)
@@ -25,18 +25,18 @@
*/
#define ILLEGAL_ISOLATE_ID ILLEGAL_PORT
-typedef void Dart_BreakpointHandler(
- Dart_Breakpoint breakpoint,
- Dart_StackTrace stack_trace);
+typedef void Dart_BreakpointHandler(Dart_IsolateId isolate_id,
+ Dart_Breakpoint breakpoint,
+ Dart_StackTrace stack_trace);
-typedef void Dart_BreakpointResolvedHandler(
- intptr_t bp_id,
- Dart_Handle url,
- intptr_t line_number);
+typedef void Dart_BreakpointResolvedHandler(Dart_IsolateId isolate_id,
+ intptr_t bp_id,
+ Dart_Handle url,
+ intptr_t line_number);
-typedef void Dart_ExceptionThrownHandler(
- Dart_Handle exception_object,
- Dart_StackTrace stack_trace);
+typedef void Dart_ExceptionThrownHandler(Dart_IsolateId isolate_id,
+ Dart_Handle exception_object,
+ Dart_StackTrace stack_trace);
typedef enum {
kCreated = 0,

Powered by Google App Engine
This is Rietveld 408576698