Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: Source/core/workers/SharedWorker.cpp

Issue 1212643004: [Oilpan] Apply RefCountedGarbageCollectedEventTarget on AbstractWorker (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove some redundant includes Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/workers/SharedWorker.h ('k') | Source/core/workers/SharedWorker.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/SharedWorker.cpp
diff --git a/Source/core/workers/SharedWorker.cpp b/Source/core/workers/SharedWorker.cpp
index 4a2df674ee8be42721ec32d18c09388250205d1c..2981a7c7b8f5c015ee2724f34146b38692f2418c 100644
--- a/Source/core/workers/SharedWorker.cpp
+++ b/Source/core/workers/SharedWorker.cpp
@@ -54,14 +54,14 @@ inline SharedWorker::SharedWorker(ExecutionContext* context)
{
}
-PassRefPtrWillBeRawPtr<SharedWorker> SharedWorker::create(ExecutionContext* context, const String& url, const String& name, ExceptionState& exceptionState)
+SharedWorker* SharedWorker::create(ExecutionContext* context, const String& url, const String& name, ExceptionState& exceptionState)
{
ASSERT(isMainThread());
ASSERT_WITH_SECURITY_IMPLICATION(context->isDocument());
UseCounter::count(context, UseCounter::SharedWorkerStart);
- RefPtrWillBeRawPtr<SharedWorker> worker = adoptRefWillBeNoop(new SharedWorker(context));
+ SharedWorker* worker = new SharedWorker(context);
MessageChannel* channel = MessageChannel::create(context);
worker->m_port = channel->port1();
@@ -82,9 +82,9 @@ PassRefPtrWillBeRawPtr<SharedWorker> SharedWorker::create(ExecutionContext* cont
return nullptr;
if (document->frame()->loader().client()->sharedWorkerRepositoryClient())
- document->frame()->loader().client()->sharedWorkerRepositoryClient()->connect(worker.get(), remotePort.release(), scriptURL, name, exceptionState);
+ document->frame()->loader().client()->sharedWorkerRepositoryClient()->connect(worker, remotePort.release(), scriptURL, name, exceptionState);
- return worker.release();
+ return worker;
}
SharedWorker::~SharedWorker()
@@ -103,10 +103,8 @@ bool SharedWorker::hasPendingActivity() const
DEFINE_TRACE(SharedWorker)
{
-#if ENABLE(OILPAN)
visitor->trace(m_port);
HeapSupplementable<SharedWorker>::trace(visitor);
-#endif
AbstractWorker::trace(visitor);
}
« no previous file with comments | « Source/core/workers/SharedWorker.h ('k') | Source/core/workers/SharedWorker.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698