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

Unified Diff: ipc/ipc_channel_reader.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_channel_reader.cc
diff --git a/ipc/ipc_channel_reader.cc b/ipc/ipc_channel_reader.cc
index 5080f517c58760855d5959ecc8cac513cd4c9ff6..48df38c698b253b309c29c4ff0f9ab9720b3e0ab 100644
--- a/ipc/ipc_channel_reader.cc
+++ b/ipc/ipc_channel_reader.cc
@@ -7,7 +7,7 @@
namespace IPC {
namespace internal {
-ChannelReader::ChannelReader(Channel::Listener* listener)
+ChannelReader::ChannelReader(ChannelListener* listener)
: listener_(listener) {
memset(input_buf_, 0, sizeof(input_buf_));
}

Powered by Google App Engine
This is Rietveld 408576698