mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-08 04:02:52 +00:00
The following command was used to clang-format these files: clang-format-19 -i $(find . \ -not \( -path "./\.*" -prune \) \ -not \( -path "./Build/*" -prune \) \ -not \( -path "./Toolchain/*" -prune \) \ -type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2024, MacDue <macdue@dueutil.tech>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/SVGAnimatedTransformListPrototype.h>
|
|
#include <LibWeb/SVG/SVGAnimatedTransformList.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
GC_DEFINE_ALLOCATOR(SVGAnimatedTransformList);
|
|
|
|
GC::Ref<SVGAnimatedTransformList> SVGAnimatedTransformList::create(JS::Realm& realm, GC::Ref<SVGTransformList> base_val, GC::Ref<SVGTransformList> anim_val)
|
|
{
|
|
return realm.create<SVGAnimatedTransformList>(realm, base_val, anim_val);
|
|
}
|
|
|
|
SVGAnimatedTransformList::SVGAnimatedTransformList(JS::Realm& realm, GC::Ref<SVGTransformList> base_val, GC::Ref<SVGTransformList> anim_val)
|
|
: PlatformObject(realm)
|
|
, m_base_val(base_val)
|
|
, m_anim_val(anim_val)
|
|
{
|
|
}
|
|
|
|
SVGAnimatedTransformList::~SVGAnimatedTransformList() = default;
|
|
|
|
void SVGAnimatedTransformList::initialize(JS::Realm& realm)
|
|
{
|
|
Base::initialize(realm);
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(SVGAnimatedTransformList);
|
|
}
|
|
|
|
void SVGAnimatedTransformList::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_base_val);
|
|
visitor.visit(m_anim_val);
|
|
}
|
|
|
|
}
|