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

Unified Diff: third_party/WebKit/Source/core/svg/SVGRectElement.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
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGRect.idl ('k') | third_party/WebKit/Source/core/svg/SVGRectTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGRectElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGRectElement.h b/third_party/WebKit/Source/core/svg/SVGRectElement.h
index 3963ebba10b92aca9792cb1948da91270bb14f99..651cdc9d7d57cecbb6e0d01a1f155ed56e9bc072 100644
--- a/third_party/WebKit/Source/core/svg/SVGRectElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGRectElement.h
@@ -57,12 +57,12 @@ private:
LayoutObject* createLayoutObject(const ComputedStyle&) override;
- RefPtrWillBeMember<SVGAnimatedLength> m_x;
- RefPtrWillBeMember<SVGAnimatedLength> m_y;
- RefPtrWillBeMember<SVGAnimatedLength> m_width;
- RefPtrWillBeMember<SVGAnimatedLength> m_height;
- RefPtrWillBeMember<SVGAnimatedLength> m_rx;
- RefPtrWillBeMember<SVGAnimatedLength> m_ry;
+ Member<SVGAnimatedLength> m_x;
+ Member<SVGAnimatedLength> m_y;
+ Member<SVGAnimatedLength> m_width;
+ Member<SVGAnimatedLength> m_height;
+ Member<SVGAnimatedLength> m_rx;
+ Member<SVGAnimatedLength> m_ry;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGRect.idl ('k') | third_party/WebKit/Source/core/svg/SVGRectTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698