| Index: experimental/svg/model/SkSVGTypes.h
|
| diff --git a/experimental/svg/model/SkSVGTypes.h b/experimental/svg/model/SkSVGTypes.h
|
| index ab07d7b16c4a4f75ca04060feea2c3563318b573..b2e2db10764860a2b90d57ee286749f02b937c09 100644
|
| --- a/experimental/svg/model/SkSVGTypes.h
|
| +++ b/experimental/svg/model/SkSVGTypes.h
|
| @@ -9,6 +9,7 @@
|
| #define SkSVGTypes_DEFINED
|
|
|
| #include "SkColor.h"
|
| +#include "SkMatrix.h"
|
| #include "SkRect.h"
|
| #include "SkScalar.h"
|
| #include "SkTypes.h"
|
| @@ -29,9 +30,10 @@ private:
|
| T fValue;
|
| };
|
|
|
| -using SkSVGColorType = SkSVGPrimitiveTypeWrapper<SkColor >;
|
| -using SkSVGNumberType = SkSVGPrimitiveTypeWrapper<SkScalar>;
|
| -using SkSVGViewBoxType = SkSVGPrimitiveTypeWrapper<SkRect >;
|
| +using SkSVGColorType = SkSVGPrimitiveTypeWrapper<SkColor >;
|
| +using SkSVGNumberType = SkSVGPrimitiveTypeWrapper<SkScalar>;
|
| +using SkSVGViewBoxType = SkSVGPrimitiveTypeWrapper<SkRect >;
|
| +using SkSVGTransformType = SkSVGPrimitiveTypeWrapper<SkMatrix>;
|
|
|
| class SkSVGLength {
|
| public:
|
|
|