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

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, 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/css/CSSFontFaceSource.h
diff --git a/third_party/WebKit/Source/core/css/CSSFontFaceSource.h b/third_party/WebKit/Source/core/css/CSSFontFaceSource.h
index 5222f27f1e43462dbb278ad367340dd1e4698f20..20a1f6f2c1860275f208c358a59f2880468fe8f0 100644
--- a/third_party/WebKit/Source/core/css/CSSFontFaceSource.h
+++ b/third_party/WebKit/Source/core/css/CSSFontFaceSource.h
@@ -36,8 +36,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();
@@ -65,7 +64,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;
};
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSFontFaceRule.h ('k') | third_party/WebKit/Source/core/css/CSSFontFaceSrcValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698