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

Unified Diff: third_party/WebKit/Source/core/svg/SVGGraphicsElement.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/SVGGraphicsElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGGraphicsElement.h b/third_party/WebKit/Source/core/svg/SVGGraphicsElement.h
index a107e9a16996ff396f4a1c885bce23a184b87d6d..d73bc68207534ae002b98c40ba0a0a146fdeaaa5 100644
--- a/third_party/WebKit/Source/core/svg/SVGGraphicsElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGGraphicsElement.h
@@ -37,7 +37,7 @@ class SVGMatrixTearOff;
class CORE_EXPORT SVGGraphicsElement : public SVGElement, public SVGTests {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGGraphicsElement);
+ USING_GARBAGE_COLLECTED_MIXIN(SVGGraphicsElement);
public:
~SVGGraphicsElement() override;
@@ -45,8 +45,8 @@ public:
AffineTransform getCTM(StyleUpdateStrategy = AllowStyleUpdate);
AffineTransform getScreenCTM(StyleUpdateStrategy = AllowStyleUpdate);
- PassRefPtrWillBeRawPtr<SVGMatrixTearOff> getCTMFromJavascript();
- PassRefPtrWillBeRawPtr<SVGMatrixTearOff> getScreenCTMFromJavascript();
+ RawPtr<SVGMatrixTearOff> getCTMFromJavascript();
+ RawPtr<SVGMatrixTearOff> getScreenCTMFromJavascript();
SVGElement* nearestViewportElement() const;
SVGElement* farthestViewportElement() const;
@@ -57,7 +57,7 @@ public:
AffineTransform* animateMotionTransform() override;
virtual FloatRect getBBox();
- PassRefPtrWillBeRawPtr<SVGRectTearOff> getBBoxFromJavascript();
+ RawPtr<SVGRectTearOff> getBBoxFromJavascript();
bool isValid() const final { return SVGTests::isValid(); }
@@ -76,7 +76,7 @@ protected:
void svgAttributeChanged(const QualifiedName&) override;
- RefPtrWillBeMember<SVGAnimatedTransformList> m_transform;
+ Member<SVGAnimatedTransformList> m_transform;
private:
bool isSVGGraphicsElement() const final { return true; }
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGGradientElement.h ('k') | third_party/WebKit/Source/core/svg/SVGGraphicsElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698