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

Unified Diff: ipc/ipc_sync_channel.h

Issue 10698057: Remove Message::Sender and Channel::Listener typedefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « ipc/ipc_send_fds_test.cc ('k') | ipc/ipc_sync_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_sync_channel.h
diff --git a/ipc/ipc_sync_channel.h b/ipc/ipc_sync_channel.h
index 3157279f277fabed7ea75ae6a32b63c2b1af7acc..c6ebde167ec40a0ded28513f6514ffaac4619c2e 100644
--- a/ipc/ipc_sync_channel.h
+++ b/ipc/ipc_sync_channel.h
@@ -70,7 +70,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
// the channel will be initialized synchronously.
SyncChannel(const IPC::ChannelHandle& channel_handle,
Channel::Mode mode,
- Channel::Listener* listener,
+ Listener* listener,
base::MessageLoopProxy* ipc_message_loop,
bool create_pipe_now,
base::WaitableEvent* shutdown_event);
@@ -78,7 +78,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
// Creates an uninitialized sync channel. Call ChannelProxy::Init to
// initialize the channel. This two-step setup allows message filters to be
// added before any messages are sent or received.
- SyncChannel(Channel::Listener* listener,
+ SyncChannel(Listener* listener,
base::MessageLoopProxy* ipc_message_loop,
base::WaitableEvent* shutdown_event);
@@ -119,7 +119,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
class SyncContext : public Context,
public base::WaitableEventWatcher::Delegate {
public:
- SyncContext(Channel::Listener* listener,
+ SyncContext(Listener* listener,
base::MessageLoopProxy* ipc_thread,
base::WaitableEvent* shutdown_event);
« no previous file with comments | « ipc/ipc_send_fds_test.cc ('k') | ipc/ipc_sync_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698