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

Side by Side Diff: experimental/svg/model/SkSVGNode.h

Issue 2249033003: [SVGDom] Add <circle>, <ellipse> support (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 unified diff | Download patch
« no previous file with comments | « experimental/svg/model/SkSVGEllipse.cpp ('k') | gyp/svg.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkSVGNode_DEFINED 8 #ifndef SkSVGNode_DEFINED
9 #define SkSVGNode_DEFINED 9 #define SkSVGNode_DEFINED
10 10
11 #include "SkRefCnt.h" 11 #include "SkRefCnt.h"
12 #include "SkSVGAttribute.h" 12 #include "SkSVGAttribute.h"
13 13
14 class SkCanvas; 14 class SkCanvas;
15 class SkMatrix; 15 class SkMatrix;
16 class SkSVGRenderContext; 16 class SkSVGRenderContext;
17 class SkSVGValue; 17 class SkSVGValue;
18 18
19 enum class SkSVGTag { 19 enum class SkSVGTag {
20 kCircle,
21 kEllipse,
20 kG, 22 kG,
21 kPath, 23 kPath,
22 kPolygon, 24 kPolygon,
23 kPolyline, 25 kPolyline,
24 kRect, 26 kRect,
25 kSvg 27 kSvg
26 }; 28 };
27 29
28 class SkSVGNode : public SkRefCnt { 30 class SkSVGNode : public SkRefCnt {
29 public: 31 public:
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 private: 64 private:
63 SkSVGTag fTag; 65 SkSVGTag fTag;
64 66
65 // FIXME: this should be sparse 67 // FIXME: this should be sparse
66 SkSVGPresentationAttributes fPresentationAttributes; 68 SkSVGPresentationAttributes fPresentationAttributes;
67 69
68 typedef SkRefCnt INHERITED; 70 typedef SkRefCnt INHERITED;
69 }; 71 };
70 72
71 #endif // SkSVGNode_DEFINED 73 #endif // SkSVGNode_DEFINED
OLDNEW
« no previous file with comments | « experimental/svg/model/SkSVGEllipse.cpp ('k') | gyp/svg.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698