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

Unified Diff: third_party/WebKit/Source/core/svg/SVGLinearGradientElement.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/SVGLinearGradientElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGLinearGradientElement.h b/third_party/WebKit/Source/core/svg/SVGLinearGradientElement.h
index 03af3a737355d55bccd3f1f9b3c90a28441a2ecd..e8728c6e7784074c026efcd72bec9ef8f86069c0 100644
--- a/third_party/WebKit/Source/core/svg/SVGLinearGradientElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGLinearGradientElement.h
@@ -53,10 +53,10 @@ private:
bool selfHasRelativeLengths() const override;
- RefPtrWillBeMember<SVGAnimatedLength> m_x1;
- RefPtrWillBeMember<SVGAnimatedLength> m_y1;
- RefPtrWillBeMember<SVGAnimatedLength> m_x2;
- RefPtrWillBeMember<SVGAnimatedLength> m_y2;
+ Member<SVGAnimatedLength> m_x1;
+ Member<SVGAnimatedLength> m_y1;
+ Member<SVGAnimatedLength> m_x2;
+ Member<SVGAnimatedLength> m_y2;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGLineElement.h ('k') | third_party/WebKit/Source/core/svg/SVGLinearGradientElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698