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

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

Issue 2327233003: [SVGDom] Initial linear gradient support (Closed)
Patch Set: cleanup Created 4 years, 3 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
Index: experimental/svg/model/SkSVGContainer.h
diff --git a/experimental/svg/model/SkSVGContainer.h b/experimental/svg/model/SkSVGContainer.h
index 9a3fd621ab80b3b1ed62aefb4c8f6b0a0d6ce9fe..24ac30ef47634192e9884fcd91228dc26e70e23a 100644
--- a/experimental/svg/model/SkSVGContainer.h
+++ b/experimental/svg/model/SkSVGContainer.h
@@ -18,13 +18,13 @@ public:
void appendChild(sk_sp<SkSVGNode>) override;
protected:
- SkSVGContainer(SkSVGTag);
+ explicit SkSVGContainer(SkSVGTag);
void onRender(const SkSVGRenderContext&) const override;
robertphillips 2016/09/12 19:31:52 Hmm, very trusting ...
f(malita) 2016/09/12 19:52:09 Added a TODO for some sort of child iterator inste
-private:
SkSTArray<1, sk_sp<SkSVGNode>, true> fChildren;
+private:
typedef SkSVGTransformableNode INHERITED;
};

Powered by Google App Engine
This is Rietveld 408576698