Index: third_party/WebKit/Source/core/style/SVGComputedStyle.h |
diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyle.h b/third_party/WebKit/Source/core/style/SVGComputedStyle.h |
index 3844019a2d20e261c4c7f36ee8421674a1458265..a1caff302ed8a29aebf297871d64b882194695c2 100644 |
--- a/third_party/WebKit/Source/core/style/SVGComputedStyle.h |
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyle.h |
@@ -87,7 +87,6 @@ public: |
static float initialFloodOpacity() { return 1; } |
static Color initialFloodColor() { return Color(0, 0, 0); } |
static Color initialLightingColor() { return Color(255, 255, 255); } |
- static const AtomicString& initialClipperResource() { return nullAtom; } |
static const AtomicString& initialMaskerResource() { return nullAtom; } |
static const AtomicString& initialMarkerStartResource() { return nullAtom; } |
static const AtomicString& initialMarkerMidResource() { return nullAtom; } |
@@ -273,12 +272,6 @@ public: |
} |
// Setters for non-inherited resources |
- void setClipperResource(const AtomicString& obj) |
- { |
- if (!(resources->clipper == obj)) |
- resources.access()->clipper = obj; |
- } |
- |
void setMaskerResource(const AtomicString& obj) |
{ |
if (!(resources->masker == obj)) |
@@ -345,7 +338,6 @@ public: |
const Length& r() const { return geometry->r; } |
const Length& rx() const { return geometry->rx; } |
const Length& ry() const { return geometry->ry; } |
- const AtomicString& clipperResource() const { return resources->clipper; } |
const AtomicString& maskerResource() const { return resources->masker; } |
const AtomicString& markerStartResource() const { return inheritedResources->markerStart; } |
const AtomicString& markerMidResource() const { return inheritedResources->markerMid; } |
@@ -378,7 +370,6 @@ public: |
} |
// convenience |
- bool hasClipper() const { return !clipperResource().isEmpty(); } |
bool hasMasker() const { return !maskerResource().isEmpty(); } |
bool hasMarkers() const { return !markerStartResource().isEmpty() || !markerMidResource().isEmpty() || !markerEndResource().isEmpty(); } |
bool hasStroke() const { return strokePaintType() != SVG_PAINTTYPE_NONE; } |