Index: third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
index 27964c4633a67c325cc4bb5918e3050ca2bc8e2b..8affc18b2640cecdbca3788856f3d3253d8212ef 100644 |
--- a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
@@ -1,4 +1,3 @@ |
- |
/* |
Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
2004, 2005, 2007 Rob Buis <buis@kde.org> |
@@ -158,22 +157,19 @@ bool StyleMiscData::operator==(const StyleMiscData& other) const |
} |
StyleResourceData::StyleResourceData() |
- : clipPath(SVGComputedStyle::initialClipPath()) |
- , masker(SVGComputedStyle::initialMaskerResource()) |
+ : masker(SVGComputedStyle::initialMaskerResource()) |
{ |
} |
StyleResourceData::StyleResourceData(const StyleResourceData& other) |
: RefCounted<StyleResourceData>() |
- , clipPath(other.clipPath) |
, masker(other.masker) |
{ |
} |
bool StyleResourceData::operator==(const StyleResourceData& other) const |
{ |
- return dataEquivalent(clipPath, other.clipPath) |
- && masker == other.masker; |
+ return masker == other.masker; |
} |
StyleInheritedResourceData::StyleInheritedResourceData() |