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

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

Issue 1846913009: HeapSupplements are now just Supplements. (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 b3d1b99eb032d21a29cf3855607308fd74699ad1..cd3bcb55fe46bca7311617fad4cb4b55bb4d0b4d 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerClient.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerContainerClient.h
@@ -19,8 +19,8 @@ class WebServiceWorkerProvider;
// Owned by Document (or WorkerClients).
class MODULES_EXPORT ServiceWorkerContainerClient final
: public GarbageCollectedFinalized<ServiceWorkerContainerClient>
- , public HeapSupplement<Document>
- , public HeapSupplement<WorkerClients> {
+ , public Supplement<Document>
+ , public Supplement<WorkerClients> {
USING_GARBAGE_COLLECTED_MIXIN(ServiceWorkerContainerClient);
WTF_MAKE_NONCOPYABLE(ServiceWorkerContainerClient);
public:
@@ -34,8 +34,8 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE()
{
- HeapSupplement<Document>::trace(visitor);
- HeapSupplement<WorkerClients>::trace(visitor);
+ Supplement<Document>::trace(visitor);
+ Supplement<WorkerClients>::trace(visitor);
}
protected:

Powered by Google App Engine
This is Rietveld 408576698