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

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

Issue 311193007: Oilpan: Replace RefPtr<Node> in core/svg/ with Oilpan transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/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 8b4e0a200128452a38305200104df2a9b982d4ff..a8479ed47542efe554c0cb105e83433fe263b6df 100644
--- a/Source/core/svg/SVGFilterElement.h
+++ b/Source/core/svg/SVGFilterElement.h
@@ -39,6 +39,7 @@ class SVGFilterElement FINAL : public SVGElement,
public SVGURIReference {
public:
DEFINE_NODE_FACTORY(SVGFilterElement);
+ virtual void trace(Visitor*) OVERRIDE;
void setFilterRes(unsigned x, unsigned y);
void addClient(Node*);
@@ -75,7 +76,7 @@ private:
RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_primitiveUnits;
RefPtr<SVGAnimatedIntegerOptionalInteger> m_filterRes;
- HashSet<RefPtr<Node> > m_clientsToAdd;
+ WillBeHeapHashSet<RefPtrWillBeMember<Node> > m_clientsToAdd;
};
}
« no previous file with comments | « no previous file | Source/core/svg/SVGFilterElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698