Index: third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.h |
diff --git a/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.h b/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.h |
index 429fdf45f29c7f27d8920ecc9977563aa8f79c7c..958ac28ade5dc3047d029f4fc1d513ee234a7793 100644 |
--- a/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.h |
+++ b/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.h |
@@ -40,7 +40,7 @@ class ExceptionState; |
class LocalFrame; |
class Navigator; |
-class MODULES_EXPORT NavigatorContentUtils final : public GarbageCollectedFinalized<NavigatorContentUtils>, public HeapSupplement<LocalFrame> { |
+class MODULES_EXPORT NavigatorContentUtils final : public GarbageCollectedFinalized<NavigatorContentUtils>, public Supplement<LocalFrame> { |
USING_GARBAGE_COLLECTED_MIXIN(NavigatorContentUtils); |
public: |
virtual ~NavigatorContentUtils(); |
@@ -57,7 +57,7 @@ public: |
DEFINE_INLINE_VIRTUAL_TRACE() |
{ |
visitor->trace(m_client); |
- HeapSupplement<LocalFrame>::trace(visitor); |
+ Supplement<LocalFrame>::trace(visitor); |
} |
void setClientForTest(RawPtr<NavigatorContentUtilsClient> client) { m_client = client; } |