| Index: Source/core/workers/WorkerGlobalScope.cpp
|
| diff --git a/Source/core/workers/WorkerGlobalScope.cpp b/Source/core/workers/WorkerGlobalScope.cpp
|
| index 7e2cdf428eca98127aaf9548624ee194389e5055..0de27ed7d882a3d35aa75be3c82830d6e91f4e87 100644
|
| --- a/Source/core/workers/WorkerGlobalScope.cpp
|
| +++ b/Source/core/workers/WorkerGlobalScope.cpp
|
| @@ -74,7 +74,7 @@ public:
|
| virtual bool isCleanupTask() const { return true; }
|
| };
|
|
|
| -WorkerGlobalScope::WorkerGlobalScope(const KURL& url, const String& userAgent, WorkerThread* thread, double timeOrigin, PassOwnPtr<WorkerClients> workerClients)
|
| +WorkerGlobalScope::WorkerGlobalScope(const KURL& url, const String& userAgent, WorkerThread* thread, double timeOrigin, PassOwnPtrWillBeRawPtr<WorkerClients> workerClients)
|
| : m_url(url)
|
| , m_userAgent(userAgent)
|
| , m_script(adoptPtr(new WorkerScriptController(*this)))
|
| @@ -312,9 +312,8 @@ void WorkerGlobalScope::trace(Visitor* visitor)
|
| visitor->trace(m_console);
|
| visitor->trace(m_location);
|
| visitor->trace(m_navigator);
|
| -#if ENABLE(OILPAN)
|
| - HeapSupplementable<WorkerGlobalScope>::trace(visitor);
|
| -#endif
|
| + visitor->trace(m_workerClients);
|
| + WillBeHeapSupplementable<WorkerGlobalScope>::trace(visitor);
|
| }
|
|
|
| } // namespace WebCore
|
|
|