Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1764)

Unified Diff: Source/core/svg/SVGBoolean.h

Issue 463173003: Remove some SVG equality operators (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/svg/SVGPoint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGBoolean.h
diff --git a/Source/core/svg/SVGBoolean.h b/Source/core/svg/SVGBoolean.h
index b52227e9d986a99ae5cb3baa0ba26f05fae674dd..8d1f7856d585ec19503d459cf8e097bf2d73b91d 100644
--- a/Source/core/svg/SVGBoolean.h
+++ b/Source/core/svg/SVGBoolean.h
@@ -55,9 +55,6 @@ public:
virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) OVERRIDE;
- bool operator==(const SVGBoolean& other) const { return m_value == other.m_value; }
- bool operator!=(const SVGBoolean& other) const { return !operator==(other); }
-
bool value() const { return m_value; }
void setValue(bool value) { m_value = value; }
« no previous file with comments | « no previous file | Source/core/svg/SVGPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698