| Index: content/worker/webworkerclient_proxy.h
|
| diff --git a/content/worker/webworkerclient_proxy.h b/content/worker/webworkerclient_proxy.h
|
| index d9caeb92df8faf13e9ce67b648373e453e37c445..dc24e24a3183921d375a73244ebf4c0c3b24f242 100644
|
| --- a/content/worker/webworkerclient_proxy.h
|
| +++ b/content/worker/webworkerclient_proxy.h
|
| @@ -20,7 +20,7 @@ class WebWorker;
|
| }
|
|
|
| class SharedWorkerDevToolsAgent;
|
| -class WebWorkerStubBase;
|
| +class WebSharedWorkerStub;
|
|
|
| // This class receives IPCs from the renderer and calls the WebCore::Worker
|
| // implementation (after the data types have been converted by glue code). It
|
| @@ -29,7 +29,7 @@ class WebWorkerStubBase;
|
| // calls by WebWorkerProxy.
|
| class WebWorkerClientProxy : public WebKit::WebWorkerClient {
|
| public:
|
| - WebWorkerClientProxy(int route_id, WebWorkerStubBase* stub);
|
| + WebWorkerClientProxy(int route_id, WebSharedWorkerStub* stub);
|
| virtual ~WebWorkerClientProxy();
|
|
|
| // WebWorkerClient implementation.
|
| @@ -93,7 +93,7 @@ class WebWorkerClientProxy : public WebKit::WebWorkerClient {
|
|
|
| int route_id_;
|
| int appcache_host_id_;
|
| - WebWorkerStubBase* stub_;
|
| + WebSharedWorkerStub* stub_;
|
| ScopedRunnableMethodFactory<WebWorkerClientProxy> kill_process_factory_;
|
| SharedWorkerDevToolsAgent* devtools_agent_;
|
|
|
|
|