aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/svg
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2016-12-07 16:52:58 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-07 22:28:04 +0000
commit02b7349af7ce61c3f7d301148b54e17877233030 (patch)
tree3d532c728ac070b06ce9c0b197646288c7ba4118 /include/svg
parent867812e2ef3d2f03f3bbc7f80bc1fb74659c74b4 (diff)
no need for SK_SUPPORT_LEGACY_CANVAS_IS_REFCNT anymore
BUG=skia: Change-Id: If0aa01beb8be9bd7d9a3a5b23c795223b02f02d3 Reviewed-on: https://skia-review.googlesource.com/5690 Commit-Queue: Mike Reed <reed@google.com> Reviewed-by: Mike Reed <reed@google.com>
Diffstat (limited to 'include/svg')
-rw-r--r--include/svg/SkSVGCanvas.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/svg/SkSVGCanvas.h b/include/svg/SkSVGCanvas.h
index b72f273123..f544f64e1d 100644
--- a/include/svg/SkSVGCanvas.h
+++ b/include/svg/SkSVGCanvas.h
@@ -26,12 +26,6 @@ public:
* SVG element).
*/
static std::unique_ptr<SkCanvas> Make(const SkRect& bounds, SkXMLWriter*);
-
-#ifdef SK_SUPPORT_LEGACY_CANVAS_IS_REFCNT
- static SkCanvas* Create(const SkRect& bounds, SkXMLWriter* writer) {
- return Make(bounds, writer).release();
- }
-#endif
};
#endif