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

Unified Diff: bin/dbg_message.cc

Issue 11052006: 1. Create a port when a debugger object is created for an isolate, use this (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
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
« no previous file with comments | « bin/dbg_message.h ('k') | include/dart_debugger_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/dbg_message.cc
===================================================================
--- bin/dbg_message.cc (revision 13206)
+++ bin/dbg_message.cc (working copy)
@@ -965,16 +965,8 @@
}
-void DbgMessageQueue::IsolateEventHandler(Dart_Isolate isolate,
+void DbgMessageQueue::IsolateEventHandler(Dart_IsolateId isolate_id,
Dart_IsolateEvent kind) {
DebuggerConnectionHandler::WaitForConnection();
-#if 0
- if (kind == kCreated) {
- printf("Isolate created %p\n", isolate);
- } else if (kind == kInterrupted) {
- printf("Isolate interrupted %p\n", isolate);
- } else if (kind == kShutdown) {
- printf("Isolate shutdown %p\n", isolate);
- }
-#endif
+ // TODO(asiva): Add code to send isolate events over to the debugger client.
}
« no previous file with comments | « bin/dbg_message.h ('k') | include/dart_debugger_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698