| Index: Source/core/workers/WorkerMessagingProxy.h
|
| diff --git a/Source/core/workers/WorkerMessagingProxy.h b/Source/core/workers/WorkerMessagingProxy.h
|
| index 4fcdd73c7643026f77e3c00fc2cd444cbaa0af3d..5816c70ae229db6cb10c09f849f3843f19072238 100644
|
| --- a/Source/core/workers/WorkerMessagingProxy.h
|
| +++ b/Source/core/workers/WorkerMessagingProxy.h
|
| @@ -48,7 +48,7 @@ namespace WebCore {
|
| class WorkerMessagingProxy FINAL : public WorkerGlobalScopeProxy, public WorkerLoaderProxy {
|
| WTF_MAKE_NONCOPYABLE(WorkerMessagingProxy); WTF_MAKE_FAST_ALLOCATED;
|
| public:
|
| - WorkerMessagingProxy(Worker*, PassOwnPtr<WorkerClients>);
|
| + WorkerMessagingProxy(Worker*, PassOwnPtrWillBeRawPtr<WorkerClients>);
|
|
|
| // Implementations of WorkerGlobalScopeProxy.
|
| // (Only use these methods in the worker object thread.)
|
| @@ -100,7 +100,7 @@ namespace WebCore {
|
| Vector<OwnPtr<ExecutionContextTask> > m_queuedEarlyTasks; // Tasks are queued here until there's a thread object created.
|
| WorkerGlobalScopeProxy::PageInspector* m_pageInspector;
|
|
|
| - OwnPtr<WorkerClients> m_workerClients;
|
| + OwnPtrWillBePersistent<WorkerClients> m_workerClients;
|
| };
|
|
|
| } // namespace WebCore
|
|
|