From d84effeba573f3362b2cd297e86e90ec55f99cfc Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 25 Jun 2012 17:03:10 +0000 Subject: Use IPC::Sender and IPC::Listener in content. This replaces uses of IPC::Message::Sender with IPC::Sender and IPC::Channel::Listener with IPC::Listener. I also fixed up header files where it was obvious. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10662005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143920 0039d316-1c4b-4281-b951-d872f2087c98 --- content/worker/websharedworker_stub.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'content/worker') diff --git a/content/worker/websharedworker_stub.h b/content/worker/websharedworker_stub.h index 7caf545..4bd3226 100644 --- a/content/worker/websharedworker_stub.h +++ b/content/worker/websharedworker_stub.h @@ -21,12 +21,12 @@ class SharedWorkerDevToolsAgent; // This class creates a WebSharedWorker, and translates incoming IPCs to the // appropriate WebSharedWorker APIs. -class WebSharedWorkerStub : public IPC::Channel::Listener { +class WebSharedWorkerStub : public IPC::Listener { public: WebSharedWorkerStub(const string16& name, int route_id, const WorkerAppCacheInitInfo& appcache_init_info); - // IPC::Channel::Listener implementation. + // IPC::Listener implementation. virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; virtual void OnChannelError() OVERRIDE; -- cgit v1.1