Backed out changeset 45813096b581 (bug 853554) because it breaks the build

This commit is contained in:
Ehsan Akhgari 2013-03-21 20:18:27 -04:00
parent f982db0249
commit acf1d4eb31
6 changed files with 14 additions and 14 deletions

View File

@ -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;
};

View File

@ -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;
};

View File

@ -205,7 +205,7 @@ protected:
iterator begin() { return mData.Elements(); }
iterator end() { return mData.Elements() + mData.Length(); }
FallibleTArray<float> mData;
nsTArray<float> mData;
};

View File

@ -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;
};

View File

@ -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;
};

View File

@ -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