| Index: third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
|
| index 505233489d38d01b4454fc5105ce2c12f447a019..52531c002fc94890fb5396e86ff9d8e72ee6287f 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
|
| @@ -75,7 +75,7 @@ public:
|
| virtual CachedMetadataHandler* createWorkerScriptCachedMetadataHandler(const KURL& scriptURL, const Vector<char>* metaData) { return nullptr; }
|
|
|
| KURL completeURL(const String&) const;
|
| - void dispose() final;
|
| + virtual void dispose();
|
| void exceptionUnhandled(int exceptionId);
|
|
|
| void registerEventListener(V8AbstractEventListener*);
|
| @@ -172,7 +172,7 @@ private:
|
|
|
| Member<WorkerEventQueue> m_eventQueue;
|
|
|
| - Member<WorkerClients> m_workerClients;
|
| + CrossThreadPersistent<WorkerClients> m_workerClients;
|
|
|
| DOMTimerCoordinator m_timers;
|
|
|
|
|