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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTextPathElement.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/SVGTextPathElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGTextPathElement.h b/third_party/WebKit/Source/core/svg/SVGTextPathElement.h
index 5b88a780a30f93f3a3d62f1a527a62c6ad25f0af..09dfbf30e707714ad344ac74e0bd6af55b82ab7a 100644
--- a/third_party/WebKit/Source/core/svg/SVGTextPathElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGTextPathElement.h
@@ -45,7 +45,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGTextPath
class SVGTextPathElement final : public SVGTextContentElement,
public SVGURIReference {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGTextPathElement);
+ USING_GARBAGE_COLLECTED_MIXIN(SVGTextPathElement);
public:
// Forward declare enumerations in the W3C naming scheme, for IDL generation.
enum {
@@ -83,9 +83,9 @@ private:
bool selfHasRelativeLengths() const override;
- RefPtrWillBeMember<SVGAnimatedLength> m_startOffset;
- RefPtrWillBeMember<SVGAnimatedEnumeration<SVGTextPathMethodType>> m_method;
- RefPtrWillBeMember<SVGAnimatedEnumeration<SVGTextPathSpacingType>> m_spacing;
+ Member<SVGAnimatedLength> m_startOffset;
+ Member<SVGAnimatedEnumeration<SVGTextPathMethodType>> m_method;
+ Member<SVGAnimatedEnumeration<SVGTextPathSpacingType>> m_spacing;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698