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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFEBlendElement.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, 9 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/SVGFEBlendElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGFEBlendElement.h b/third_party/WebKit/Source/core/svg/SVGFEBlendElement.h
index 137c223c65ac1378c127dedb1534c7aa13b96336..f6f61a1b503856270772c4e5527fdb97b69df146 100644
--- a/third_party/WebKit/Source/core/svg/SVGFEBlendElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGFEBlendElement.h
@@ -65,11 +65,11 @@ private:
bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) override;
void svgAttributeChanged(const QualifiedName&) override;
- PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
+ RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
- RefPtrWillBeMember<SVGAnimatedString> m_in1;
- RefPtrWillBeMember<SVGAnimatedString> m_in2;
- RefPtrWillBeMember<SVGAnimatedEnumeration<Mode>> m_mode;
+ Member<SVGAnimatedString> m_in1;
+ Member<SVGAnimatedString> m_in2;
+ Member<SVGAnimatedEnumeration<Mode>> m_mode;
};
template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGFEBlendElement::Mode>();
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGEnumeration.cpp ('k') | third_party/WebKit/Source/core/svg/SVGFEBlendElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698