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

Unified Diff: debugger/rsp/rsp_packets.h

Issue 7466014: Add rsp::GetOffsets command + reply (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « debugger/rsp/rsp_info_packets.cc ('k') | debugger/rsp/rsp_packets.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: debugger/rsp/rsp_packets.h
===================================================================
--- debugger/rsp/rsp_packets.h (revision 931)
+++ debugger/rsp/rsp_packets.h (working copy)
@@ -39,6 +39,8 @@
class IsThreadAliveCommand;
class QXferFeaturesReadCommand;
class QXferReply;
+class GetOffsetsCommand;
+class GetOffsetsReply;
class GetThreadInfoCommand;
class GetThreadInfoReply;
@@ -132,6 +134,8 @@
virtual void Visit(QXferReply* packet) {}
virtual void Visit(GetThreadInfoCommand* packet) {}
virtual void Visit(GetThreadInfoReply* packet) {}
+ virtual void Visit(GetOffsetsCommand* packet) {}
+ virtual void Visit(GetOffsetsReply* packet) {}
};
/// This class is used in |packet_cast| casting template.
@@ -161,6 +165,8 @@
virtual void Visit(QXferReply* packet) { type_ = 20;}
virtual void Visit(GetThreadInfoCommand* packet) { type_ = 21;}
virtual void Visit(GetThreadInfoReply* packet) { type_ = 22;}
+ virtual void Visit(GetOffsetsCommand* packet) { type_ = 23;}
+ virtual void Visit(GetOffsetsReply* packet) { type_ = 24;}
int type_;
};
« no previous file with comments | « debugger/rsp/rsp_info_packets.cc ('k') | debugger/rsp/rsp_packets.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698