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

Unified Diff: runtime/bin/dbg_connection.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
« no previous file with comments | « no previous file | runtime/bin/dbg_connection.cc » ('j') | runtime/bin/dbg_message.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/dbg_connection.h
===================================================================
--- runtime/bin/dbg_connection.h (revision 13208)
+++ runtime/bin/dbg_connection.h (working copy)
@@ -27,8 +27,11 @@
#endif
+// Forward declarations.
+class DbgMessage;
class MessageBuffer;
+
class DebuggerConnectionHandler {
public:
explicit DebuggerConnectionHandler(int debug_fd);
@@ -76,9 +79,8 @@
// Handlers for generic debug command messages which are not specific to
// an isolate.
- static void HandleInterruptCmd(DebuggerConnectionHandler* handler);
- static void HandleIsolatesListCmd(DebuggerConnectionHandler* handler);
- static void HandleQuitCmd(DebuggerConnectionHandler* handler);
+ static void HandleInterruptCmd(DbgMessage* msg);
+ static void HandleIsolatesListCmd(DbgMessage* msg);
// Helper methods to manage debugger client connections.
static void AddNewDebuggerConnection(int debug_fd);
« no previous file with comments | « no previous file | runtime/bin/dbg_connection.cc » ('j') | runtime/bin/dbg_message.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698