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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFEImageElement.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/SVGFEImageElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGFEImageElement.h b/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
index ae6b4f5882bbc7929339a62c73693da19cbd30e2..03d63a43530e4cccc3fb2306a4e47fdf48d4c36b 100644
--- a/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
@@ -35,7 +35,7 @@ class SVGFEImageElement final : public SVGFilterPrimitiveStandardAttributes,
public SVGURIReference,
public ResourceClient {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGFEImageElement);
+ USING_GARBAGE_COLLECTED_MIXIN(SVGFEImageElement);
public:
DECLARE_NODE_FACTORY(SVGFEImageElement);
@@ -55,7 +55,7 @@ private:
void notifyFinished(Resource*) override;
String debugName() const override { return "SVGFEImageElement"; }
- PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
+ RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override;
void clearResourceReferences();
void fetchImageResource();
@@ -64,9 +64,9 @@ private:
InsertionNotificationRequest insertedInto(ContainerNode*) override;
void removedFrom(ContainerNode*) override;
- RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
+ Member<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
- RefPtrWillBeMember<ImageResource> m_cachedImage;
+ Member<ImageResource> m_cachedImage;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698