| Index: Source/core/workers/WorkerGlobalScope.h
|
| diff --git a/Source/core/workers/WorkerGlobalScope.h b/Source/core/workers/WorkerGlobalScope.h
|
| index 58665d8af1d33b70e4d13ab576895c8fb70d6d04..e6cd948c438e20b7e9677756a6b955591cc6f1f9 100644
|
| --- a/Source/core/workers/WorkerGlobalScope.h
|
| +++ b/Source/core/workers/WorkerGlobalScope.h
|
| @@ -131,7 +131,7 @@ namespace WebCore {
|
| virtual void trace(Visitor*);
|
|
|
| protected:
|
| - WorkerGlobalScope(const KURL&, const String& userAgent, WorkerThread*, double timeOrigin, PassOwnPtr<WorkerClients>);
|
| + WorkerGlobalScope(const KURL&, const String& userAgent, WorkerThread*, double timeOrigin, PassOwnPtrWillBeRawPtr<WorkerClients>);
|
| void applyContentSecurityPolicyFromString(const String& contentSecurityPolicy, ContentSecurityPolicyHeaderType);
|
|
|
| virtual void logExceptionToConsole(const String& errorMessage, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>) OVERRIDE;
|
| @@ -165,7 +165,7 @@ namespace WebCore {
|
|
|
| OwnPtr<WorkerEventQueue> m_eventQueue;
|
|
|
| - OwnPtr<WorkerClients> m_workerClients;
|
| + OwnPtrWillBeMember<WorkerClients> m_workerClients;
|
|
|
| double m_timeOrigin;
|
| };
|
|
|