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

Unified Diff: third_party/WebKit/Source/core/svg/SVGForeignObjectElement.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/SVGForeignObjectElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGForeignObjectElement.h b/third_party/WebKit/Source/core/svg/SVGForeignObjectElement.h
index 35680f19236257a18b3c43f1d785bf7114507ffa..493cb31c115ed01b44797f8dc8149e5c5d24ad50 100644
--- a/third_party/WebKit/Source/core/svg/SVGForeignObjectElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGForeignObjectElement.h
@@ -54,10 +54,10 @@ private:
bool selfHasRelativeLengths() const override;
- RefPtrWillBeMember<SVGAnimatedLength> m_x;
- RefPtrWillBeMember<SVGAnimatedLength> m_y;
- RefPtrWillBeMember<SVGAnimatedLength> m_width;
- RefPtrWillBeMember<SVGAnimatedLength> m_height;
+ Member<SVGAnimatedLength> m_x;
+ Member<SVGAnimatedLength> m_y;
+ Member<SVGAnimatedLength> m_width;
+ Member<SVGAnimatedLength> m_height;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGFitToViewBox.cpp ('k') | third_party/WebKit/Source/core/svg/SVGGeometryElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698