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

Unified Diff: ipc/ipc_fuzzing_tests.cc

Issue 8437033: Android IPC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make unistd.h OS_ANDROID-only Created 9 years, 2 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
Index: ipc/ipc_fuzzing_tests.cc
diff --git a/ipc/ipc_fuzzing_tests.cc b/ipc/ipc_fuzzing_tests.cc
index d1a3c33de698f397483acb0dcbb502f918a71542..a45d72599ce57db3be44699fac5009245fb9c748 100644
--- a/ipc/ipc_fuzzing_tests.cc
+++ b/ipc/ipc_fuzzing_tests.cc
@@ -355,8 +355,10 @@ class ServerMacroExTest {
public:
ServerMacroExTest() : unhandled_msgs_(0) {
}
+
virtual ~ServerMacroExTest() {
}
+
virtual bool OnMessageReceived(const IPC::Message& msg) {
bool msg_is_ok = false;
IPC_BEGIN_MESSAGE_MAP_EX(ServerMacroExTest, msg, msg_is_ok)
@@ -378,6 +380,8 @@ class ServerMacroExTest {
}
int unhandled_msgs_;
+
+ DISALLOW_COPY_AND_ASSIGN(ServerMacroExTest);
};
TEST_F(IPCFuzzingTest, MsgMapExMacro) {

Powered by Google App Engine
This is Rietveld 408576698