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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerClient.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (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/modules/serviceworkers/ServiceWorkerContainerClient.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerClient.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerClient.h
index c68c61e12da9832941c132b8ea24784d7fcba3ac..b3d1b99eb032d21a29cf3855607308fd74699ad1 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerClient.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerClient.h
@@ -18,14 +18,13 @@ class WebServiceWorkerProvider;
// This mainly exists to provide access to WebServiceWorkerProvider.
// Owned by Document (or WorkerClients).
class MODULES_EXPORT ServiceWorkerContainerClient final
- : public NoBaseWillBeGarbageCollectedFinalized<ServiceWorkerContainerClient>
- , public WillBeHeapSupplement<Document>
- , public WillBeHeapSupplement<WorkerClients> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerContainerClient);
+ : public GarbageCollectedFinalized<ServiceWorkerContainerClient>
+ , public HeapSupplement<Document>
+ , public HeapSupplement<WorkerClients> {
+ USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerContainerClient);
WTF_MAKE_NONCOPYABLE(ServiceWorkerContainerClient);
- USING_FAST_MALLOC_WILL_BE_REMOVED(ServiceWorkerContainerClient);
public:
- static PassOwnPtrWillBeRawPtr<ServiceWorkerContainerClient> create(PassOwnPtr<WebServiceWorkerProvider>);
+ static RawPtr<ServiceWorkerContainerClient> create(PassOwnPtr<WebServiceWorkerProvider>);
virtual ~ServiceWorkerContainerClient();
WebServiceWorkerProvider* provider() { return m_provider.get(); }
@@ -35,8 +34,8 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE()
{
- WillBeHeapSupplement<Document>::trace(visitor);
- WillBeHeapSupplement<WorkerClients>::trace(visitor);
+ HeapSupplement<Document>::trace(visitor);
+ HeapSupplement<WorkerClients>::trace(visitor);
}
protected:

Powered by Google App Engine
This is Rietveld 408576698