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

Side by Side Diff: runtime/bin/dbg_connection.h

Issue 10797033: Debugger API to enable/disable debugging of libraries (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/dbg_connection.cc » ('j') | runtime/bin/dbg_connection.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef BIN_DBG_CONNECTION_H_ 5 #ifndef BIN_DBG_CONNECTION_H_
6 #define BIN_DBG_CONNECTION_H_ 6 #define BIN_DBG_CONNECTION_H_
7 7
8 #include "bin/builtin.h" 8 #include "bin/builtin.h"
9 #include "bin/utils.h" 9 #include "bin/utils.h"
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 static void CloseDbgConnection(); 55 static void CloseDbgConnection();
56 56
57 static void HandleMessages(); 57 static void HandleMessages();
58 static void HandleResumeCmd(const char* msg); 58 static void HandleResumeCmd(const char* msg);
59 static void HandleStepIntoCmd(const char* msg); 59 static void HandleStepIntoCmd(const char* msg);
60 static void HandleStepOverCmd(const char* msg); 60 static void HandleStepOverCmd(const char* msg);
61 static void HandleStepOutCmd(const char* msg); 61 static void HandleStepOutCmd(const char* msg);
62 static void HandleGetLibrariesCmd(const char* json_msg); 62 static void HandleGetLibrariesCmd(const char* json_msg);
63 static void HandleGetClassPropsCmd(const char* json_msg); 63 static void HandleGetClassPropsCmd(const char* json_msg);
64 static void HandleGetLibPropsCmd(const char* json_msg); 64 static void HandleGetLibPropsCmd(const char* json_msg);
65 static void HandleSetLibPropsCmd(const char* json_msg);
65 static void HandleGetGlobalsCmd(const char* json_msg); 66 static void HandleGetGlobalsCmd(const char* json_msg);
66 static void HandleGetObjPropsCmd(const char* json_msg); 67 static void HandleGetObjPropsCmd(const char* json_msg);
67 static void HandleGetListCmd(const char* json_msg); 68 static void HandleGetListCmd(const char* json_msg);
68 static void HandleGetScriptURLsCmd(const char* json_msg); 69 static void HandleGetScriptURLsCmd(const char* json_msg);
69 static void HandleGetSourceCmd(const char* json_msg); 70 static void HandleGetSourceCmd(const char* json_msg);
70 static void HandleGetStackTraceCmd(const char* json_msg); 71 static void HandleGetStackTraceCmd(const char* json_msg);
71 static void HandlePauseOnExcCmd(const char* json_msg); 72 static void HandlePauseOnExcCmd(const char* json_msg);
72 static void HandleSetBpCmd(const char* json_msg); 73 static void HandleSetBpCmd(const char* json_msg);
73 static void HandleRemBpCmd(const char* json_msg); 74 static void HandleRemBpCmd(const char* json_msg);
74 static void HandleUnknownMsg(const char* json_msg); 75 static void HandleUnknownMsg(const char* json_msg);
(...skipping 22 matching lines...) Expand all
97 98
98 static MessageBuffer* msgbuf_; 99 static MessageBuffer* msgbuf_;
99 100
100 friend class DebuggerConnectionImpl; 101 friend class DebuggerConnectionImpl;
101 102
102 DISALLOW_ALLOCATION(); 103 DISALLOW_ALLOCATION();
103 DISALLOW_IMPLICIT_CONSTRUCTORS(DebuggerConnectionHandler); 104 DISALLOW_IMPLICIT_CONSTRUCTORS(DebuggerConnectionHandler);
104 }; 105 };
105 106
106 #endif // BIN_DBG_CONNECTION_H_ 107 #endif // BIN_DBG_CONNECTION_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/dbg_connection.cc » ('j') | runtime/bin/dbg_connection.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698