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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.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/graphics/filters/SVGFEImage.h
diff --git a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.h b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.h
index 4b9f8875f15d738ebc5c2ae4551676b68b6cb7c4..c498bed4bada9354f5aee6067a0aa1aec9fcc3fa 100644
--- a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.h
+++ b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.h
@@ -35,8 +35,8 @@ class LayoutObject;
class FEImage final : public FilterEffect {
public:
- static PassRefPtrWillBeRawPtr<FEImage> createWithImage(Filter*, PassRefPtr<Image>, PassRefPtrWillBeRawPtr<SVGPreserveAspectRatio>);
- static PassRefPtrWillBeRawPtr<FEImage> createWithIRIReference(Filter*, TreeScope&, const String&, PassRefPtrWillBeRawPtr<SVGPreserveAspectRatio>);
+ static RawPtr<FEImage> createWithImage(Filter*, PassRefPtr<Image>, RawPtr<SVGPreserveAspectRatio>);
+ static RawPtr<FEImage> createWithIRIReference(Filter*, TreeScope&, const String&, RawPtr<SVGPreserveAspectRatio>);
FloatRect determineAbsolutePaintRect(const FloatRect& requestedRect) override;
@@ -53,8 +53,8 @@ public:
private:
~FEImage() override {}
- FEImage(Filter*, PassRefPtr<Image>, PassRefPtrWillBeRawPtr<SVGPreserveAspectRatio>);
- FEImage(Filter*, TreeScope&, const String&, PassRefPtrWillBeRawPtr<SVGPreserveAspectRatio>);
+ FEImage(Filter*, PassRefPtr<Image>, RawPtr<SVGPreserveAspectRatio>);
+ FEImage(Filter*, TreeScope&, const String&, RawPtr<SVGPreserveAspectRatio>);
LayoutObject* referencedLayoutObject() const;
PassRefPtr<SkImageFilter> createImageFilterForLayoutObject(const LayoutObject&);
@@ -62,9 +62,9 @@ private:
RefPtr<Image> m_image;
// m_treeScope will never be a dangling reference. See https://bugs.webkit.org/show_bug.cgi?id=99243
- RawPtrWillBeMember<TreeScope> m_treeScope;
+ Member<TreeScope> m_treeScope;
String m_href;
- RefPtrWillBeMember<SVGPreserveAspectRatio> m_preserveAspectRatio;
+ Member<SVGPreserveAspectRatio> m_preserveAspectRatio;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698