blob: 0db67caf33593c06ff6fc5e50bcacda91a75502d [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "modules/csspaint/WindowPaintWorklet.h"
#include "core/frame/LocalDOMWindow.h"
#include "core/frame/LocalFrame.h"
#include "modules/csspaint/PaintWorklet.h"
namespace blink {
WindowPaintWorklet::WindowPaintWorklet(LocalDOMWindow& window)
: DOMWindowProperty(window.frame())
{
}
const char* WindowPaintWorklet::supplementName()
{
return "WindowPaintWorklet";
}
// static
WindowPaintWorklet& WindowPaintWorklet::from(LocalDOMWindow& window)
{
WindowPaintWorklet* supplement = static_cast<WindowPaintWorklet*>(HeapSupplement<LocalDOMWindow>::from(window, supplementName()));
if (!supplement) {
supplement = new WindowPaintWorklet(window);
provideTo(window, supplementName(), supplement);
}
return *supplement;
}
// static
Worklet* WindowPaintWorklet::paintWorklet(ExecutionContext* executionContext, DOMWindow& window)
{
return from(toLocalDOMWindow(window)).paintWorklet(executionContext);
}
PaintWorklet* WindowPaintWorklet::paintWorklet(ExecutionContext* executionContext) const
{
if (!m_paintWorklet && frame())
m_paintWorklet = PaintWorklet::create(frame(), executionContext);
return m_paintWorklet.get();
}
DEFINE_TRACE(WindowPaintWorklet)
{
visitor->trace(m_paintWorklet);
HeapSupplement<LocalDOMWindow>::trace(visitor);
DOMWindowProperty::trace(visitor);
}
} // namespace blink