зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset 45813096b581 (bug 853554) because it breaks the build
This commit is contained in:
Родитель
46284ae633
Коммит
41971df2b2
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче