| Index: third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h
|
| diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h
|
| index d037cf4b741c737a2d1acb92d6b5932c0ca907f1..f9fcece70474f3acb941e85e5f8110a9ef7a61e7 100644
|
| --- a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h
|
| +++ b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h
|
| @@ -147,27 +147,6 @@ class StyleFillData : public RefCounted<StyleFillData> {
|
| StyleFillData(const StyleFillData&);
|
| };
|
|
|
| -class UnzoomedLength {
|
| - DISALLOW_NEW();
|
| -
|
| - public:
|
| - explicit UnzoomedLength(const Length& length) : m_length(length) {}
|
| -
|
| - bool isZero() const { return m_length.isZero(); }
|
| -
|
| - bool operator==(const UnzoomedLength& other) const {
|
| - return m_length == other.m_length;
|
| - }
|
| - bool operator!=(const UnzoomedLength& other) const {
|
| - return !operator==(other);
|
| - }
|
| -
|
| - const Length& length() const { return m_length; }
|
| -
|
| - private:
|
| - Length m_length;
|
| -};
|
| -
|
| class CORE_EXPORT StyleStrokeData : public RefCounted<StyleStrokeData> {
|
| public:
|
| static PassRefPtr<StyleStrokeData> create() {
|
| @@ -186,7 +165,6 @@ class CORE_EXPORT StyleStrokeData : public RefCounted<StyleStrokeData> {
|
| float opacity;
|
| float miterLimit;
|
|
|
| - UnzoomedLength width;
|
| Length dashOffset;
|
| RefPtr<SVGDashArray> dashArray;
|
|
|
|
|