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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTests.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/SVGTests.h
diff --git a/third_party/WebKit/Source/core/svg/SVGTests.h b/third_party/WebKit/Source/core/svg/SVGTests.h
index 097c160784c46dbb4f9d44ec1549666c9bc4d533..d1cbfebc58246d0c7f77669d73f64475cdf2a285 100644
--- a/third_party/WebKit/Source/core/svg/SVGTests.h
+++ b/third_party/WebKit/Source/core/svg/SVGTests.h
@@ -31,7 +31,7 @@ class Document;
class QualifiedName;
class SVGElement;
-class CORE_EXPORT SVGTests : public WillBeGarbageCollectedMixin {
+class CORE_EXPORT SVGTests : public GarbageCollectedMixin {
public:
// JS API
SVGStringListTearOff* requiredFeatures() { return m_requiredFeatures->tearOff(); }
@@ -48,9 +48,9 @@ protected:
explicit SVGTests(SVGElement* contextElement);
private:
- RefPtrWillBeMember<SVGStaticStringList> m_requiredFeatures;
- RefPtrWillBeMember<SVGStaticStringList> m_requiredExtensions;
- RefPtrWillBeMember<SVGStaticStringList> m_systemLanguage;
+ Member<SVGStaticStringList> m_requiredFeatures;
+ Member<SVGStaticStringList> m_requiredExtensions;
+ Member<SVGStaticStringList> m_systemLanguage;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGSymbolElement.h ('k') | third_party/WebKit/Source/core/svg/SVGTextContentElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698