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

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

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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/SVGFECompositeElement.cpp ('k') | Source/core/svg/SVGFEConvolveMatrixElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFEConvolveMatrixElement.h
diff --git a/Source/core/svg/SVGFEConvolveMatrixElement.h b/Source/core/svg/SVGFEConvolveMatrixElement.h
index 494be756adb45f8728f036b52c2e94ebba971744..f484f02673befc0c9ede59d3253dd57d00811413 100644
--- a/Source/core/svg/SVGFEConvolveMatrixElement.h
+++ b/Source/core/svg/SVGFEConvolveMatrixElement.h
@@ -29,6 +29,7 @@
#include "core/svg/SVGAnimatedNumberOptionalNumber.h"
#include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
#include "platform/graphics/filters/FEConvolveMatrix.h"
+#include "platform/heap/Handle.h"
namespace blink {
@@ -52,6 +53,8 @@ public:
SVGAnimatedInteger* targetX() { return m_targetX.get(); }
SVGAnimatedInteger* targetY() { return m_targetY.get(); }
+ virtual void trace(Visitor*) override;
+
private:
explicit SVGFEConvolveMatrixElement(Document&);
@@ -59,18 +62,18 @@ private:
virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) override;
virtual void svgAttributeChanged(const QualifiedName&) override;
- virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
+ virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
- RefPtr<SVGAnimatedNumber> m_bias;
- RefPtr<SVGAnimatedNumber> m_divisor;
- RefPtr<SVGAnimatedString> m_in1;
- RefPtr<SVGAnimatedEnumeration<EdgeModeType> > m_edgeMode;
- RefPtr<SVGAnimatedNumberList> m_kernelMatrix;
- RefPtr<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
- RefPtr<SVGAnimatedIntegerOptionalInteger> m_order;
- RefPtr<SVGAnimatedBoolean> m_preserveAlpha;
- RefPtr<SVGAnimatedInteger> m_targetX;
- RefPtr<SVGAnimatedInteger> m_targetY;
+ RefPtrWillBeMember<SVGAnimatedNumber> m_bias;
+ RefPtrWillBeMember<SVGAnimatedNumber> m_divisor;
+ RefPtrWillBeMember<SVGAnimatedString> m_in1;
+ RefPtrWillBeMember<SVGAnimatedEnumeration<EdgeModeType> > m_edgeMode;
+ RefPtrWillBeMember<SVGAnimatedNumberList> m_kernelMatrix;
+ RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
+ RefPtrWillBeMember<SVGAnimatedIntegerOptionalInteger> m_order;
+ RefPtrWillBeMember<SVGAnimatedBoolean> m_preserveAlpha;
+ RefPtrWillBeMember<SVGAnimatedInteger> m_targetX;
+ RefPtrWillBeMember<SVGAnimatedInteger> m_targetY;
};
} // namespace blink
« no previous file with comments | « Source/core/svg/SVGFECompositeElement.cpp ('k') | Source/core/svg/SVGFEConvolveMatrixElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698