Index: third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp |
diff --git a/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp b/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp |
index 0db67caf33593c06ff6fc5e50bcacda91a75502d..ad97908ac77b22ea62f12101cdfe105f76286dbb 100644 |
--- a/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp |
+++ b/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp |
@@ -23,7 +23,7 @@ const char* WindowPaintWorklet::supplementName() |
// static |
WindowPaintWorklet& WindowPaintWorklet::from(LocalDOMWindow& window) |
{ |
- WindowPaintWorklet* supplement = static_cast<WindowPaintWorklet*>(HeapSupplement<LocalDOMWindow>::from(window, supplementName())); |
+ WindowPaintWorklet* supplement = static_cast<WindowPaintWorklet*>(Supplement<LocalDOMWindow>::from(window, supplementName())); |
if (!supplement) { |
supplement = new WindowPaintWorklet(window); |
provideTo(window, supplementName(), supplement); |
@@ -47,7 +47,7 @@ PaintWorklet* WindowPaintWorklet::paintWorklet(ExecutionContext* executionContex |
DEFINE_TRACE(WindowPaintWorklet) |
{ |
visitor->trace(m_paintWorklet); |
- HeapSupplement<LocalDOMWindow>::trace(visitor); |
+ Supplement<LocalDOMWindow>::trace(visitor); |
DOMWindowProperty::trace(visitor); |
} |