Bug 1874684 - Part 37: Fix unified compilation. r=allstarschh
[gecko.git] / layout / style / nsDOMCSSValueList.h
blobecab14e225db8bf55a6bde991a0ce8c94dc2eda3
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 /* DOM object representing lists of values in DOM computed style */
9 #ifndef nsDOMCSSValueList_h___
10 #define nsDOMCSSValueList_h___
12 #include "CSSValue.h"
13 #include "nsTArray.h"
15 class nsDOMCSSValueList final : public mozilla::dom::CSSValue {
16 public:
17 // nsDOMCSSValueList
18 explicit nsDOMCSSValueList(bool aCommaDelimited);
20 /**
21 * Adds a value to this list.
23 void AppendCSSValue(already_AddRefed<CSSValue> aValue);
25 uint16_t CssValueType() const final { return CSS_VALUE_LIST; }
27 uint32_t Length() const { return mCSSValues.Length(); }
28 void GetCssText(nsAString&) final;
30 protected:
31 virtual ~nsDOMCSSValueList();
33 bool mCommaDelimited; // some value lists use a comma as the delimiter, some
34 // just use spaces.
36 nsTArray<RefPtr<CSSValue>> mCSSValues;
39 #endif /* nsDOMCSSValueList_h___ */