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

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

Issue 2202053002: [SVGDom/experimental] Initial SVGLength support (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: cleanup 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
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkSVGShape_DEFINED
9 #define SkSVGShape_DEFINED
10
11 #include "SkSVGTransformableNode.h"
12
13 class SkSVGLengthContext;
14 class SkPaint;
15
16 class SkSVGShape : public SkSVGTransformableNode {
17 public:
18 virtual ~SkSVGShape() = default;
19
robertphillips 2016/08/02 22:25:56 Do we want to assert that this appendChild is neve
f(malita) 2016/08/03 16:50:52 Hmm, since this would be a public API it seems a b
20 void appendChild(sk_sp<SkSVGNode>) override { }
21
22 protected:
23 SkSVGShape(SkSVGTag);
24
25 void onRender(SkCanvas*, const SkSVGRenderContext&) const final;
26
27 virtual void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&) co nst = 0;
28
29 private:
30 typedef SkSVGTransformableNode INHERITED;
31 };
32
33 #endif // SkSVGShape_DEFINED
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698