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

Unified Diff: third_party/WebKit/Source/core/svg/SVGViewElement.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/SVGViewElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGViewElement.h b/third_party/WebKit/Source/core/svg/SVGViewElement.h
index 28ead0dd2d16601fbd795dac3eabb3e816609fdd..2c76b56e7ecd45674b0c5f24221774766c194a71 100644
--- a/third_party/WebKit/Source/core/svg/SVGViewElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGViewElement.h
@@ -35,7 +35,7 @@ class SVGViewElement final : public SVGElement,
public SVGFitToViewBox,
public SVGZoomAndPan {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGViewElement);
+ USING_GARBAGE_COLLECTED_MIXIN(SVGViewElement);
public:
DECLARE_NODE_FACTORY(SVGViewElement);
@@ -55,7 +55,7 @@ private:
bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; }
- RefPtrWillBeMember<SVGStaticStringList> m_viewTarget;
+ Member<SVGStaticStringList> m_viewTarget;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGUseElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGViewSpec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698