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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerClients.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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() { }
« no previous file with comments | « third_party/WebKit/Source/core/workers/SharedWorkerThread.cpp ('k') | third_party/WebKit/Source/core/workers/WorkerConsole.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698