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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAElement.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/SVGAElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAElement.h b/third_party/WebKit/Source/core/svg/SVGAElement.h
index 15b0fe42e7adbd4ccfc394bc534a6b82c38a7862..0dae653a0ac0b756561329081019b2881ce2ee59 100644
--- a/third_party/WebKit/Source/core/svg/SVGAElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGAElement.h
@@ -31,7 +31,7 @@ namespace blink {
class CORE_EXPORT SVGAElement final : public SVGGraphicsElement, public SVGURIReference {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGAElement);
+ USING_GARBAGE_COLLECTED_MIXIN(SVGAElement);
public:
DECLARE_NODE_FACTORY(SVGAElement);
SVGAnimatedString* svgTarget() { return m_svgTarget.get(); }
@@ -63,7 +63,7 @@ private:
bool willRespondToMouseClickEvents() override;
- RefPtrWillBeMember<SVGAnimatedString> m_svgTarget;
+ Member<SVGAnimatedString> m_svgTarget;
bool m_wasFocusedByMouse;
};
« no previous file with comments | « third_party/WebKit/Source/core/svg/RadialGradientAttributes.h ('k') | third_party/WebKit/Source/core/svg/SVGAngle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698