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

Unified Diff: third_party/WebKit/Source/core/css/CSSFontFaceSource.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, 10 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/css/CSSFontFaceSource.h
diff --git a/third_party/WebKit/Source/core/css/CSSFontFaceSource.h b/third_party/WebKit/Source/core/css/CSSFontFaceSource.h
index de80db486936d3244b2826f7ac50057a3a876df3..207f45b05e8f284e61754789d26e568da485fe4d 100644
--- a/third_party/WebKit/Source/core/css/CSSFontFaceSource.h
+++ b/third_party/WebKit/Source/core/css/CSSFontFaceSource.h
@@ -37,8 +37,7 @@ class CSSFontFace;
class FontDescription;
class SimpleFontData;
-class CSSFontFaceSource : public NoBaseWillBeGarbageCollectedFinalized<CSSFontFaceSource> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(CSSFontFaceSource);
+class CSSFontFaceSource : public GarbageCollectedFinalized<CSSFontFaceSource> {
WTF_MAKE_NONCOPYABLE(CSSFontFaceSource);
public:
virtual ~CSSFontFaceSource();
@@ -67,7 +66,7 @@ protected:
using FontDataTable = HashMap<unsigned, RefPtr<SimpleFontData>>; // The hash key is composed of size synthetic styles.
- RawPtrWillBeMember<CSSFontFace> m_face; // Our owning font face.
+ Member<CSSFontFace> m_face; // Our owning font face.
FontDataTable m_fontDataTable;
};

Powered by Google App Engine
This is Rietveld 408576698