Bug 1874684 - Part 4: Prefer const references instead of copying Instant values....
[gecko.git] / dom / svg / SVGAttrValueWrapper.cpp
blob4bd097931fc9986a45a9b9a1681eae254a726d71
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 "SVGAttrValueWrapper.h"
9 #include "SVGAnimatedIntegerPair.h"
10 #include "SVGAnimatedLength.h"
11 #include "SVGAnimatedNumberPair.h"
12 #include "SVGAnimatedOrient.h"
13 #include "SVGAnimatedPreserveAspectRatio.h"
14 #include "SVGAnimatedViewBox.h"
15 #include "SVGLengthList.h"
16 #include "SVGNumberList.h"
17 #include "SVGPathData.h"
18 #include "SVGPointList.h"
19 #include "SVGStringList.h"
20 #include "SVGTransformList.h"
22 namespace mozilla {
24 /*static*/
25 void SVGAttrValueWrapper::ToString(const SVGAnimatedOrient* aOrient,
26 nsAString& aResult) {
27 aOrient->GetBaseValueString(aResult);
30 /*static*/
31 void SVGAttrValueWrapper::ToString(const SVGAnimatedIntegerPair* aIntegerPair,
32 nsAString& aResult) {
33 aIntegerPair->GetBaseValueString(aResult);
36 /*static*/
37 void SVGAttrValueWrapper::ToString(const SVGAnimatedLength* aLength,
38 nsAString& aResult) {
39 aLength->GetBaseValueString(aResult);
42 /*static*/
43 void SVGAttrValueWrapper::ToString(const SVGLengthList* aLengthList,
44 nsAString& aResult) {
45 aLengthList->GetValueAsString(aResult);
48 /*static*/
49 void SVGAttrValueWrapper::ToString(const SVGNumberList* aNumberList,
50 nsAString& aResult) {
51 aNumberList->GetValueAsString(aResult);
54 /*static*/
55 void SVGAttrValueWrapper::ToString(const SVGAnimatedNumberPair* aNumberPair,
56 nsAString& aResult) {
57 aNumberPair->GetBaseValueString(aResult);
60 /*static*/
61 void SVGAttrValueWrapper::ToString(const SVGPathData* aPathData,
62 nsAString& aResult) {
63 aPathData->GetValueAsString(aResult);
66 /*static*/
67 void SVGAttrValueWrapper::ToString(const SVGPointList* aPointList,
68 nsAString& aResult) {
69 aPointList->GetValueAsString(aResult);
72 /*static*/
73 void SVGAttrValueWrapper::ToString(
74 const SVGAnimatedPreserveAspectRatio* aPreserveAspectRatio,
75 nsAString& aResult) {
76 aPreserveAspectRatio->GetBaseValueString(aResult);
79 /*static*/
80 void SVGAttrValueWrapper::ToString(const SVGStringList* aStringList,
81 nsAString& aResult) {
82 aStringList->GetValue(aResult);
85 /*static*/
86 void SVGAttrValueWrapper::ToString(const SVGTransformList* aTransformList,
87 nsAString& aResult) {
88 aTransformList->GetValueAsString(aResult);
91 /*static*/
92 void SVGAttrValueWrapper::ToString(const SVGAnimatedViewBox* aViewBox,
93 nsAString& aResult) {
94 aViewBox->GetBaseValueString(aResult);
97 } // namespace mozilla