mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 45813096b581 (bug 853554) because it breaks the build
This commit is contained in:
parent
f982db0249
commit
acf1d4eb31
@ -160,7 +160,7 @@ protected:
|
||||
* It may be worth considering using nsAttrValue for length lists instead of
|
||||
* storing them directly on the element.
|
||||
*/
|
||||
FallibleTArray<SVGLength> mLengths;
|
||||
nsTArray<SVGLength> mLengths;
|
||||
};
|
||||
|
||||
|
||||
|
@ -130,10 +130,10 @@ private:
|
||||
|
||||
protected:
|
||||
|
||||
/* See SVGLengthList for the rationale for using FallibleTArray<float> instead
|
||||
* of FallibleTArray<float, 1>.
|
||||
/* See SVGLengthList for the rationale for using nsTArray<float> instead
|
||||
* of nsTArray<float, 1>.
|
||||
*/
|
||||
FallibleTArray<float> mNumbers;
|
||||
nsTArray<float> mNumbers;
|
||||
};
|
||||
|
||||
|
||||
|
@ -205,7 +205,7 @@ protected:
|
||||
iterator begin() { return mData.Elements(); }
|
||||
iterator end() { return mData.Elements() + mData.Length(); }
|
||||
|
||||
FallibleTArray<float> mData;
|
||||
nsTArray<float> mData;
|
||||
};
|
||||
|
||||
|
||||
|
@ -138,10 +138,10 @@ private:
|
||||
|
||||
protected:
|
||||
|
||||
/* See SVGLengthList for the rationale for using FallibleTArray<SVGPoint> instead
|
||||
* of FallibleTArray<SVGPoint, 1>.
|
||||
/* See SVGLengthList for the rationale for using nsTArray<SVGPoint> instead
|
||||
* of nsTArray<SVGPoint, 1>.
|
||||
*/
|
||||
FallibleTArray<SVGPoint> mItems;
|
||||
nsTArray<SVGPoint> mItems;
|
||||
};
|
||||
|
||||
|
||||
|
@ -133,10 +133,10 @@ private:
|
||||
|
||||
protected:
|
||||
|
||||
/* See SVGLengthList for the rationale for using FallibleTArray<float> instead
|
||||
* of FallibleTArray<float, 1>.
|
||||
/* See SVGLengthList for the rationale for using nsTArray<float> instead
|
||||
* of nsTArray<float, 1>.
|
||||
*/
|
||||
FallibleTArray<nsString> mStrings;
|
||||
nsTArray<nsString> mStrings;
|
||||
bool mIsSet;
|
||||
bool mIsCommaSeparated;
|
||||
};
|
||||
|
@ -130,10 +130,10 @@ private:
|
||||
|
||||
protected:
|
||||
/*
|
||||
* See SVGLengthList for the rationale for using FallibleTArray<SVGTransform>
|
||||
* instead of FallibleTArray<SVGTransform, 1>.
|
||||
* See SVGLengthList for the rationale for using nsTArray<SVGTransform>
|
||||
* instead of nsTArray<SVGTransform, 1>.
|
||||
*/
|
||||
FallibleTArray<SVGTransform> mItems;
|
||||
nsTArray<SVGTransform> mItems;
|
||||
};
|
||||
|
||||
} // namespace mozilla
|
||||
|
Loading…
Reference in New Issue
Block a user