| Index: webkit/api/public/WebSharedWorker.h
|
| diff --git a/webkit/api/public/WebSharedWorker.h b/webkit/api/public/WebSharedWorker.h
|
| index 6a9aef373699695818d26757d50200ff1c4512ee..37f0ad63e649cd8c3127e7cf4bc66213c3f6b7fe 100644
|
| --- a/webkit/api/public/WebSharedWorker.h
|
| +++ b/webkit/api/public/WebSharedWorker.h
|
| @@ -32,7 +32,6 @@
|
| #define WebSharedWorker_h
|
|
|
| #include "WebCommon.h"
|
| -#include "WebVector.h"
|
|
|
| namespace WebKit {
|
| class ScriptExecutionContext;
|
| @@ -44,10 +43,10 @@ namespace WebKit {
|
| // Since SharedWorkers communicate entirely through MessagePorts this interface only contains APIs for starting up a SharedWorker.
|
| class WebSharedWorker {
|
| public:
|
| - virtual ~WebSharedWorker() {};
|
| + virtual ~WebSharedWorker() {}
|
|
|
| // Returns false if the thread hasn't been started yet (script loading has not taken place).
|
| - // TODO(atwilson): Remove this when we move the initial script loading into the worker process.
|
| + // FIXME(atwilson): Remove this when we move the initial script loading into the worker process.
|
| virtual bool isStarted() = 0;
|
|
|
| virtual void startWorkerContext(const WebURL& scriptURL,
|
|
|