| 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);
|
|
|