| Index: public/platform/WebWorkerRunLoop.h
|
| diff --git a/public/platform/WebWorkerRunLoop.h b/public/platform/WebWorkerRunLoop.h
|
| index 748d111a25722d813c934b89fd778df990c4b2e0..8b0fd981d1bd8748c41656886942fbe197ab6cd4 100644
|
| --- a/public/platform/WebWorkerRunLoop.h
|
| +++ b/public/platform/WebWorkerRunLoop.h
|
| @@ -29,6 +29,7 @@
|
|
|
| namespace blink {
|
|
|
| +class WebTeleporter;
|
| class WorkerThread;
|
|
|
| class WebWorkerRunLoop {
|
| @@ -44,9 +45,14 @@ public:
|
| BLINK_EXPORT bool equals(const WebWorkerRunLoop&) const;
|
| BLINK_EXPORT bool lessThan(const WebWorkerRunLoop&) const;
|
|
|
| + BLINK_EXPORT void setTeleporter(WebTeleporter*) const;
|
| +
|
| + BLINK_EXPORT int compositorId() const;
|
| +
|
| #if BLINK_IMPLEMENTATION
|
| WebWorkerRunLoop(WorkerThread*);
|
| #endif
|
| + WebWorkerRunLoop() {} // TODO this is probably bad
|
|
|
| private:
|
| WorkerThread* m_workerThread;
|
|
|