| Index: content/renderer/websharedworker_proxy.h
|
| diff --git a/content/renderer/websharedworker_proxy.h b/content/renderer/websharedworker_proxy.h
|
| index 36cac6a0f4145aa93f0228c0798d1dcc7d897f76..96fea4847e73e3db07292511547f116d8337227b 100644
|
| --- a/content/renderer/websharedworker_proxy.h
|
| +++ b/content/renderer/websharedworker_proxy.h
|
| @@ -11,7 +11,7 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "googleurl/src/gurl.h"
|
| -#include "ipc/ipc_channel.h"
|
| +#include "ipc/ipc_listener.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorker.h"
|
|
|
| class ChildThread;
|
| @@ -22,7 +22,7 @@ class ChildThread;
|
| // happen via the WebMessagePortChannel, and the WebSharedWorker instance will
|
| // be freed.
|
| class WebSharedWorkerProxy : public WebKit::WebSharedWorker,
|
| - private IPC::Channel::Listener {
|
| + private IPC::Listener {
|
| public:
|
| // If the worker not loaded yet, route_id == MSG_ROUTING_NONE
|
| WebSharedWorkerProxy(ChildThread* child_thread,
|
| @@ -50,7 +50,7 @@ class WebSharedWorkerProxy : public WebKit::WebSharedWorker,
|
| virtual void clientDestroyed();
|
|
|
| private:
|
| - // IPC::Channel::Listener implementation.
|
| + // IPC::Listener implementation.
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
|
|
| // Returns true if the worker is running (can send messages to it).
|
|
|