diff options
Diffstat (limited to 'chrome/browser/service/service_process_control.h')
-rw-r--r-- | chrome/browser/service/service_process_control.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/browser/service/service_process_control.h b/chrome/browser/service/service_process_control.h index 9be46eb..5f79882 100644 --- a/chrome/browser/service/service_process_control.h +++ b/chrome/browser/service/service_process_control.h @@ -19,6 +19,8 @@ #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" #include "ipc/ipc_channel_proxy.h" +#include "ipc/ipc_listener.h" +#include "ipc/ipc_sender.h" class CommandLine; @@ -36,8 +38,8 @@ struct CloudPrintProxyInfo; // // This class is accessed on the UI thread through some UI actions. It then // talks to the IPC channel on the IO thread. -class ServiceProcessControl : public IPC::Channel::Sender, - public IPC::Channel::Listener, +class ServiceProcessControl : public IPC::Sender, + public IPC::Listener, public content::NotificationObserver { public: typedef IDMap<ServiceProcessControl>::iterator iterator; @@ -70,12 +72,12 @@ class ServiceProcessControl : public IPC::Channel::Sender, // Virtual for testing. virtual void Disconnect(); - // IPC::Channel::Listener implementation. + // IPC::Listener implementation. virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; virtual void OnChannelError() OVERRIDE; - // IPC::Channel::Sender implementation + // IPC::Sender implementation virtual bool Send(IPC::Message* message) OVERRIDE; // content::NotificationObserver implementation. |