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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
Index: third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
diff --git a/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h b/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
index 11628398e506852af5a5ab408a3ce38836ae4767..eac7873c4fa7c36389a1e3353296e2782f8df66b 100644
--- a/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
+++ b/third_party/WebKit/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
@@ -41,7 +41,7 @@ class SVGFilterPrimitiveStandardAttributes : public SVGElement {
public:
void setStandardAttributes(FilterEffect*) const;
- virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) = 0;
+ virtual RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) = 0;
// Returns true, if the new value is different from the old one.
virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&);
@@ -69,11 +69,11 @@ private:
LayoutObject* createLayoutObject(const ComputedStyle&) override;
bool layoutObjectIsNeeded(const ComputedStyle&) final;
- RefPtrWillBeMember<SVGAnimatedLength> m_x;
- RefPtrWillBeMember<SVGAnimatedLength> m_y;
- RefPtrWillBeMember<SVGAnimatedLength> m_width;
- RefPtrWillBeMember<SVGAnimatedLength> m_height;
- RefPtrWillBeMember<SVGAnimatedString> m_result;
+ Member<SVGAnimatedLength> m_x;
+ Member<SVGAnimatedLength> m_y;
+ Member<SVGAnimatedLength> m_width;
+ Member<SVGAnimatedLength> m_height;
+ Member<SVGAnimatedString> m_result;
};
void invalidateFilterPrimitiveParent(SVGElement*);

Powered by Google App Engine
This is Rietveld 408576698