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

Unified Diff: runtime/bin/dbg_connection_win.h

Issue 11642019: Implement debugger connection on Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Enable debugger test on Windows Created 8 years 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 | « runtime/bin/dbg_connection_macos.cc ('k') | runtime/bin/dbg_connection_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/dbg_connection_win.h
diff --git a/runtime/bin/dbg_connection_win.h b/runtime/bin/dbg_connection_win.h
index 6b3da1b3430375b0c21fd98783925d1b3d73ceb6..24ac711e1a8999170ba0897eb642cb400603833e 100644
--- a/runtime/bin/dbg_connection_win.h
+++ b/runtime/bin/dbg_connection_win.h
@@ -5,11 +5,14 @@
#ifndef BIN_DBG_CONNECTION_WIN_H_
#define BIN_DBG_CONNECTION_WIN_H_
-
-
class DebuggerConnectionImpl {
public:
static void StartHandler(int port_number);
+ static intptr_t Send(intptr_t socket, const char* buf, int len);
+ static intptr_t Receive(intptr_t socket, char* buf, int len);
+
+ private:
+ static void ThreadEntry(uword args);
};
#endif // BIN_DBG_CONNECTION_WIN_H_
« no previous file with comments | « runtime/bin/dbg_connection_macos.cc ('k') | runtime/bin/dbg_connection_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698