Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGTextMetrics.cpp

Issue 2565173007: Remove unused SVGTextMetrics constructor (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « third_party/WebKit/Source/core/layout/svg/SVGTextMetrics.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/svg/SVGTextMetrics.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextMetrics.cpp b/third_party/WebKit/Source/core/layout/svg/SVGTextMetrics.cpp
index 3885e4e1497129f5cde6b2d91408bce1722846de..42d603734bce44ba469bd901b4ddc212855b1f0b 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGTextMetrics.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGTextMetrics.cpp
@@ -23,8 +23,6 @@
namespace blink {
-SVGTextMetrics::SVGTextMetrics() : m_width(0), m_height(0), m_length(0) {}
-
SVGTextMetrics::SVGTextMetrics(unsigned length, float width, float height)
: m_width(width), m_height(height), m_length(length) {}
« no previous file with comments | « third_party/WebKit/Source/core/layout/svg/SVGTextMetrics.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine