Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1770)

Unified Diff: experimental/svg/model/SkSVGTypes.h

Issue 2220933003: [SVGDom] Improved transform parsing (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: review Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/svg/model/SkSVGTransformableNode.cpp ('k') | experimental/svg/model/SkSVGValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « experimental/svg/model/SkSVGTransformableNode.cpp ('k') | experimental/svg/model/SkSVGValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698