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

Unified Diff: Source/core/workers/Worker.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/Worker.h ('k') | Source/core/workers/Worker.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/Worker.cpp
diff --git a/Source/core/workers/Worker.cpp b/Source/core/workers/Worker.cpp
index 79b3190abe9cbd7792f2c398afe6d61e88a1199e..dad998af419a347bbab5c7d5ca7009d79e414e36 100644
--- a/Source/core/workers/Worker.cpp
+++ b/Source/core/workers/Worker.cpp
@@ -19,7 +19,7 @@ Worker::Worker(ExecutionContext* context)
{
}
-PassRefPtrWillBeRawPtr<Worker> Worker::create(ExecutionContext* context, const String& url, ExceptionState& exceptionState)
+Worker* Worker::create(ExecutionContext* context, const String& url, ExceptionState& exceptionState)
{
ASSERT(isMainThread());
Document* document = toDocument(context);
@@ -28,9 +28,9 @@ PassRefPtrWillBeRawPtr<Worker> Worker::create(ExecutionContext* context, const S
exceptionState.throwDOMException(InvalidAccessError, "The context provided is invalid.");
return nullptr;
}
- RefPtrWillBeRawPtr<Worker> worker = adoptRefWillBeNoop(new Worker(context));
+ Worker* worker = new Worker(context);
if (worker->initialize(context, url, exceptionState))
- return worker.release();
+ return worker;
return nullptr;
}
« no previous file with comments | « Source/core/workers/Worker.h ('k') | Source/core/workers/Worker.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698