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 7a9d197d77bf09f22df89288591096fe1fcd911f..c07f35ea9d869f9156f100d28fe3f9f79ed428ce 100644 |
--- a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
@@ -158,7 +158,6 @@ bool StyleMiscData::operator==(const StyleMiscData& other) const |
StyleResourceData::StyleResourceData() |
: clipper(SVGComputedStyle::initialClipperResource()) |
- , filter(SVGComputedStyle::initialFilterResource()) |
, masker(SVGComputedStyle::initialMaskerResource()) |
{ |
} |
@@ -166,7 +165,6 @@ StyleResourceData::StyleResourceData() |
StyleResourceData::StyleResourceData(const StyleResourceData& other) |
: RefCounted<StyleResourceData>() |
, clipper(other.clipper) |
- , filter(other.filter) |
, masker(other.masker) |
{ |
} |
@@ -174,7 +172,6 @@ StyleResourceData::StyleResourceData(const StyleResourceData& other) |
bool StyleResourceData::operator==(const StyleResourceData& other) const |
{ |
return clipper == other.clipper |
- && filter == other.filter |
&& masker == other.masker; |
} |