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

Unified Diff: runtime/bin/dbg_connection.h

Issue 10392017: Support more debugger commands in the wire protocol (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/dbg_connection.h
===================================================================
--- runtime/bin/dbg_connection.h (revision 7517)
+++ runtime/bin/dbg_connection.h (working copy)
@@ -43,10 +43,19 @@
static void CloseDbgConnection();
static void HandleMessages();
- static void HandleResumeCmd();
+ static void HandleResumeCmd(const char* msg);
+ static void HandleStepIntoCmd(const char* msg);
+ static void HandleStepOverCmd(const char* msg);
+ static void HandleStepOutCmd(const char* msg);
+ static void HandleGetLibraryURLsCmd(const char* json_msg);
+ static void HandleGetScriptURLsCmd(const char* json_msg);
+ static void SendError(int msg_id, const char* format, ...);
+
static bool handler_started_;
+ static bool request_resume_;
+
// The socket that is listening for incoming debugger connections.
// This descriptor is created and closed by a VM thread.
static int listener_fd_;
« no previous file with comments | « no previous file | runtime/bin/dbg_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698