| Index: third_party/WebKit/Source/core/workers/WorkerClients.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerClients.h b/third_party/WebKit/Source/core/workers/WorkerClients.h
|
| index 9f661677806cbdf41194482d471b7846748209a9..e993c42e45fbbf3f8bc661968e4d77f2c6867816 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerClients.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerClients.h
|
| @@ -39,14 +39,13 @@ namespace blink {
|
| // This is created on the main thread, passed to the worker thread and
|
| // attached to WorkerGlobalScope when it is created.
|
| // This class can be used to provide "client" implementations to Workers.
|
| -class WorkerClients final : public NoBaseWillBeGarbageCollectedFinalized<WorkerClients>, public WillBeHeapSupplementable<WorkerClients> {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerClients);
|
| +class WorkerClients final : public GarbageCollectedFinalized<WorkerClients>, public HeapSupplementable<WorkerClients> {
|
| + USING_GARBAGE_COLLECTED_MIXIN(WorkerClients);
|
| WTF_MAKE_NONCOPYABLE(WorkerClients);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerClients);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<WorkerClients> create()
|
| + static RawPtr<WorkerClients> create()
|
| {
|
| - return adoptPtrWillBeNoop(new WorkerClients());
|
| + return new WorkerClients();
|
| }
|
|
|
| virtual ~WorkerClients() { }
|
|
|