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

Unified Diff: chrome/service/service_ipc_server.h

Issue 10553010: Rename IPC::Channel and IPC::Sender in src/chrome. (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 | « chrome/renderer/pepper/ppb_nacl_private_impl.cc ('k') | chrome/test/automation/automation_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_ipc_server.h
diff --git a/chrome/service/service_ipc_server.h b/chrome/service/service_ipc_server.h
index 980112db2da2053b4d7408a50aba088f24b2a293..a4c75130978975c3fff9e152feee176ae856e167 100644
--- a/chrome/service/service_ipc_server.h
+++ b/chrome/service/service_ipc_server.h
@@ -9,20 +9,20 @@
#include "base/memory/scoped_ptr.h"
#include "ipc/ipc_channel_handle.h"
+#include "ipc/ipc_listener.h"
#include "ipc/ipc_sync_channel.h"
#include "ipc/ipc_sync_message_filter.h"
-#include "ipc/ipc_message.h"
+#include "ipc/ipc_sender.h"
// This class handles IPC commands for the service process.
-class ServiceIPCServer : public IPC::Channel::Listener,
- public IPC::Message::Sender {
+class ServiceIPCServer : public IPC::Listener, public IPC::Sender {
public:
explicit ServiceIPCServer(const IPC::ChannelHandle& handle);
virtual ~ServiceIPCServer();
bool Init();
- // IPC::Message::Sender implementation.
+ // IPC::Sender implementation.
virtual bool Send(IPC::Message* msg) OVERRIDE;
IPC::SyncChannel* channel() { return channel_.get(); }
@@ -37,7 +37,7 @@ class ServiceIPCServer : public IPC::Channel::Listener,
private:
friend class MockServiceIPCServer;
- // IPC::Channel::Listener implementation.
+ // IPC::Listener implementation.
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
virtual void OnChannelError() OVERRIDE;
« no previous file with comments | « chrome/renderer/pepper/ppb_nacl_private_impl.cc ('k') | chrome/test/automation/automation_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698