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

Unified Diff: third_party/WebKit/Source/core/svg/RadialGradientAttributes.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/RadialGradientAttributes.h
diff --git a/third_party/WebKit/Source/core/svg/RadialGradientAttributes.h b/third_party/WebKit/Source/core/svg/RadialGradientAttributes.h
index 2c704423543e26f8cb7927c77e488e8c4adce6cd..191e535a7b1ebaebe117c38dcf6d064e83b07aca 100644
--- a/third_party/WebKit/Source/core/svg/RadialGradientAttributes.h
+++ b/third_party/WebKit/Source/core/svg/RadialGradientAttributes.h
@@ -53,12 +53,12 @@ public:
SVGLength* fy() const { return m_fy.get(); }
SVGLength* fr() const { return m_fr.get(); }
- void setCx(PassRefPtrWillBeRawPtr<SVGLength> value) { m_cx = value; m_cxSet = true; }
- void setCy(PassRefPtrWillBeRawPtr<SVGLength> value) { m_cy = value; m_cySet = true; }
- void setR(PassRefPtrWillBeRawPtr<SVGLength> value) { m_r = value; m_rSet = true; }
- void setFx(PassRefPtrWillBeRawPtr<SVGLength> value) { m_fx = value; m_fxSet = true; }
- void setFy(PassRefPtrWillBeRawPtr<SVGLength> value) { m_fy = value; m_fySet = true; }
- void setFr(PassRefPtrWillBeRawPtr<SVGLength> value) { m_fr = value; m_frSet = true; }
+ void setCx(RawPtr<SVGLength> value) { m_cx = value; m_cxSet = true; }
+ void setCy(RawPtr<SVGLength> value) { m_cy = value; m_cySet = true; }
+ void setR(RawPtr<SVGLength> value) { m_r = value; m_rSet = true; }
+ void setFx(RawPtr<SVGLength> value) { m_fx = value; m_fxSet = true; }
+ void setFy(RawPtr<SVGLength> value) { m_fy = value; m_fySet = true; }
+ void setFr(RawPtr<SVGLength> value) { m_fr = value; m_frSet = true; }
bool hasCx() const { return m_cxSet; }
bool hasCy() const { return m_cySet; }
@@ -79,12 +79,12 @@ public:
private:
// Properties
- RefPtrWillBeMember<SVGLength> m_cx;
- RefPtrWillBeMember<SVGLength> m_cy;
- RefPtrWillBeMember<SVGLength> m_r;
- RefPtrWillBeMember<SVGLength> m_fx;
- RefPtrWillBeMember<SVGLength> m_fy;
- RefPtrWillBeMember<SVGLength> m_fr;
+ Member<SVGLength> m_cx;
+ Member<SVGLength> m_cy;
+ Member<SVGLength> m_r;
+ Member<SVGLength> m_fx;
+ Member<SVGLength> m_fy;
+ Member<SVGLength> m_fr;
// Property states
bool m_cxSet : 1;
« no previous file with comments | « third_party/WebKit/Source/core/svg/PatternAttributes.h ('k') | third_party/WebKit/Source/core/svg/SVGAElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698