| Index: chrome/renderer/webworker_proxy.h
|
| diff --git a/chrome/renderer/webworker_proxy.h b/chrome/renderer/webworker_proxy.h
|
| index fb2db3edf21b1862f994604c771888fed8ac4276..112b561d2b3d7bac4292ce5dcc9d68c03c5fc32d 100644
|
| --- a/chrome/renderer/webworker_proxy.h
|
| +++ b/chrome/renderer/webworker_proxy.h
|
| @@ -27,6 +27,7 @@ class WebWorkerProxy : public WebKit::WebWorker, private WebWorkerBase {
|
| WebWorkerProxy(WebKit::WebWorkerClient* client,
|
| ChildThread* child_thread,
|
| int render_view_route_id);
|
| + ~WebWorkerProxy();
|
|
|
| // WebWorker implementation.
|
| virtual void startWorkerContext(const WebKit::WebURL& script_url,
|
| @@ -43,8 +44,7 @@ class WebWorkerProxy : public WebKit::WebWorker, private WebWorkerBase {
|
| void OnMessageReceived(const IPC::Message& message);
|
|
|
| private:
|
| - virtual void Disconnect();
|
| -
|
| + void CancelCreation();
|
| void OnWorkerCreated();
|
| void OnWorkerContextDestroyed();
|
| void OnPostMessage(const string16& message,
|
|
|