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

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

Issue 1153403003: Remove SVGFilterElement's filterRes* attributes and setFilterRes() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase + updated smallFonts.svg and textFeatures.svg Created 5 years, 7 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 | « Source/core/svg/SVGElement.cpp ('k') | Source/core/svg/SVGFilterElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFilterElement.h
diff --git a/Source/core/svg/SVGFilterElement.h b/Source/core/svg/SVGFilterElement.h
index 16509c8b428d15c602445b1b80258310b0779e8c..597f466d9b8616888a0bca310252213840c7e378 100644
--- a/Source/core/svg/SVGFilterElement.h
+++ b/Source/core/svg/SVGFilterElement.h
@@ -44,7 +44,6 @@ public:
DECLARE_NODE_FACTORY(SVGFilterElement);
DECLARE_VIRTUAL_TRACE();
- void setFilterRes(unsigned x, unsigned y);
void addClient(Node*);
void removeClient(Node*);
@@ -54,8 +53,6 @@ public:
SVGAnimatedLength* height() const { return m_height.get(); }
SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>* filterUnits() { return m_filterUnits.get(); }
SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>* primitiveUnits() { return m_primitiveUnits.get(); }
- SVGAnimatedInteger* filterResX() { return m_filterRes->firstInteger(); }
- SVGAnimatedInteger* filterResY() { return m_filterRes->secondInteger(); }
private:
explicit SVGFilterElement(Document&);
@@ -75,7 +72,6 @@ private:
RefPtrWillBeMember<SVGAnimatedLength> m_height;
RefPtrWillBeMember<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_filterUnits;
RefPtrWillBeMember<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_primitiveUnits;
- RefPtrWillBeMember<SVGAnimatedIntegerOptionalInteger> m_filterRes;
WillBeHeapHashSet<RefPtrWillBeMember<Node>> m_clientsToAdd;
};
« no previous file with comments | « Source/core/svg/SVGElement.cpp ('k') | Source/core/svg/SVGFilterElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698