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

Unified Diff: ipc/ipc_fuzzing_tests.cc

Issue 10541065: Separate out IPC::Message::Sender and channel::Listener into a separate class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gclient runhooks Created 8 years, 6 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 aa1fa5f7d6a0d93ef67752c9cb6ea8d13f31b830..fc01d78d9f457c5edce5fa4ce0623aa709a4c4a0 100644
--- a/ipc/ipc_fuzzing_tests.cc
+++ b/ipc/ipc_fuzzing_tests.cc
@@ -115,15 +115,15 @@ TEST(IPCMessageIntegrity, ReadVectorTooLarge2) {
EXPECT_FALSE(ReadParam(&m, &iter, &vec));
}
-class SimpleListener : public IPC::Channel::Listener {
+class SimpleListener : public IPC::ChannelListener {
public:
SimpleListener() : other_(NULL) {
}
- void Init(IPC::Message::Sender* s) {
+ void Init(IPC::MessageSender* s) {
other_ = s;
}
protected:
- IPC::Message::Sender* other_;
+ IPC::MessageSender* other_;
};
enum {
« ipc/ipc_channel_listener.h ('K') | « ipc/ipc_channel_reader.cc ('k') | ipc/ipc_logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698