Bug 1936278 - Prevent search mode chiclet from being dismissed when clicking in page...
[gecko.git] / dom / svg / SVGAnimatedClassOrString.cpp
blob0fcfad7203fce923457dce8f32202b58d3ac0011
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "SVGAnimatedClassOrString.h"
9 #include "DOMSVGAnimatedString.h"
10 #include "SVGAttrTearoffTable.h"
12 namespace mozilla {
14 MOZ_CONSTINIT static SVGAttrTearoffTable<SVGAnimatedClassOrString,
15 dom::DOMSVGAnimatedString>
16 sSVGAnimatedClassOrStringTearoffTable;
18 already_AddRefed<dom::DOMSVGAnimatedString>
19 SVGAnimatedClassOrString::ToDOMAnimatedString(SVGElement* aSVGElement) {
20 RefPtr<dom::DOMSVGAnimatedString> domAnimatedString =
21 sSVGAnimatedClassOrStringTearoffTable.GetTearoff(this);
22 if (!domAnimatedString) {
23 domAnimatedString = new dom::DOMSVGAnimatedString(this, aSVGElement);
24 sSVGAnimatedClassOrStringTearoffTable.AddTearoff(this, domAnimatedString);
27 return domAnimatedString.forget();
30 void SVGAnimatedClassOrString::RemoveTearoff() {
31 sSVGAnimatedClassOrStringTearoffTable.RemoveTearoff(this);
34 } // namespace mozilla