chromium/third_party/blink/renderer/modules/animationworklet/css_animation_worklet.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/modules/animationworklet/css_animation_worklet.h"

#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"

namespace blink {

// static
AnimationWorklet* CSSAnimationWorklet::animationWorklet(
    ScriptState* script_state) {}

// Break the following cycle when the context gets detached.
// Otherwise, the worklet object will leak.
//
// window => CSS.animationWorklet
// => CSSAnimationWorklet
// => AnimationWorklet  <--- break this reference
// => ThreadedWorkletMessagingProxy
// => Document
// => ... => window
void CSSAnimationWorklet::ContextDestroyed() {}

void CSSAnimationWorklet::Trace(Visitor* visitor) const {}

// static
CSSAnimationWorklet& CSSAnimationWorklet::From(LocalDOMWindow& window) {}

CSSAnimationWorklet::CSSAnimationWorklet(LocalDOMWindow& window)
    :{}

const char CSSAnimationWorklet::kSupplementName[] =;

}  // namespace blink