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

Unified Diff: third_party/WebKit/Source/core/svg/SVGLineElement.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, 10 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/SVGLineElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGLineElement.h b/third_party/WebKit/Source/core/svg/SVGLineElement.h
index 81288a6d20c8d22f238c9f5b566076af4476fdb5..b3e4c22cde0b62fefe966f19503e8e855531c24c 100644
--- a/third_party/WebKit/Source/core/svg/SVGLineElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGLineElement.h
@@ -50,10 +50,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

Powered by Google App Engine
This is Rietveld 408576698