| Index: chrome/worker/worker_thread.h
|
| ===================================================================
|
| --- chrome/worker/worker_thread.h (revision 21215)
|
| +++ chrome/worker/worker_thread.h (working copy)
|
| @@ -5,6 +5,7 @@
|
| #ifndef CHROME_WORKER_WORKER_THREAD_H_
|
| #define CHROME_WORKER_WORKER_THREAD_H_
|
|
|
| +#include "base/thread.h"
|
| #include "chrome/common/child_thread.h"
|
|
|
| class GURL;
|
| @@ -21,6 +22,10 @@
|
| private:
|
| virtual void OnControlMessageReceived(const IPC::Message& msg);
|
|
|
| + // Called by the thread base class
|
| + virtual void Init();
|
| + virtual void CleanUp();
|
| +
|
| void OnCreateWorker(const GURL& url, int route_id);
|
|
|
| scoped_ptr<WorkerWebKitClientImpl> webkit_client_;
|
|
|