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: |