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

Unified Diff: third_party/WebKit/Source/core/svg/SVGCursorElement.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/SVGCursorElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGCursorElement.h b/third_party/WebKit/Source/core/svg/SVGCursorElement.h
index e41d8cbf13aa7e9dad474867f776f5978bd01eea..e41a303e7736b5f69e68e73ba1e669a485d869e0 100644
--- a/third_party/WebKit/Source/core/svg/SVGCursorElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGCursorElement.h
@@ -34,7 +34,7 @@ class SVGCursorElement final : public SVGElement,
public SVGTests,
public SVGURIReference {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGCursorElement);
+ USING_GARBAGE_COLLECTED_MIXIN(SVGCursorElement);
public:
DECLARE_NODE_FACTORY(SVGCursorElement);
@@ -60,10 +60,10 @@ private:
bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; }
- RefPtrWillBeMember<SVGAnimatedLength> m_x;
- RefPtrWillBeMember<SVGAnimatedLength> m_y;
+ Member<SVGAnimatedLength> m_x;
+ Member<SVGAnimatedLength> m_y;
- WillBeHeapHashSet<RawPtrWillBeWeakMember<SVGElement>> m_clients;
+ HeapHashSet<WeakMember<SVGElement>> m_clients;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698