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

Unified Diff: third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.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/CSSDefaultStyleSheets.h
diff --git a/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.h b/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.h
index 4fcef0541f0a7e0557748686b56edae25b51240f..0b696ccce7ff0520c23269e095f75c05fbddf929 100644
--- a/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.h
+++ b/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.h
@@ -32,8 +32,7 @@ class Element;
class RuleSet;
class StyleSheetContents;
-class CSSDefaultStyleSheets : public NoBaseWillBeGarbageCollected<CSSDefaultStyleSheets> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(CSSDefaultStyleSheets);
+class CSSDefaultStyleSheets : public GarbageCollected<CSSDefaultStyleSheets> {
WTF_MAKE_NONCOPYABLE(CSSDefaultStyleSheets);
public:
static CSSDefaultStyleSheets& instance();
@@ -62,20 +61,20 @@ public:
private:
CSSDefaultStyleSheets();
- OwnPtrWillBeMember<RuleSet> m_defaultStyle;
- OwnPtrWillBeMember<RuleSet> m_defaultMobileViewportStyle;
- OwnPtrWillBeMember<RuleSet> m_defaultQuirksStyle;
- OwnPtrWillBeMember<RuleSet> m_defaultPrintStyle;
- OwnPtrWillBeMember<RuleSet> m_defaultViewSourceStyle;
- OwnPtrWillBeMember<RuleSet> m_defaultXHTMLMobileProfileStyle;
+ Member<RuleSet> m_defaultStyle;
+ Member<RuleSet> m_defaultMobileViewportStyle;
+ Member<RuleSet> m_defaultQuirksStyle;
+ Member<RuleSet> m_defaultPrintStyle;
+ Member<RuleSet> m_defaultViewSourceStyle;
+ Member<RuleSet> m_defaultXHTMLMobileProfileStyle;
- RefPtrWillBeMember<StyleSheetContents> m_defaultStyleSheet;
- RefPtrWillBeMember<StyleSheetContents> m_mobileViewportStyleSheet;
- RefPtrWillBeMember<StyleSheetContents> m_quirksStyleSheet;
- RefPtrWillBeMember<StyleSheetContents> m_svgStyleSheet;
- RefPtrWillBeMember<StyleSheetContents> m_mathmlStyleSheet;
- RefPtrWillBeMember<StyleSheetContents> m_mediaControlsStyleSheet;
- RefPtrWillBeMember<StyleSheetContents> m_fullscreenStyleSheet;
+ Member<StyleSheetContents> m_defaultStyleSheet;
+ Member<StyleSheetContents> m_mobileViewportStyleSheet;
+ Member<StyleSheetContents> m_quirksStyleSheet;
+ Member<StyleSheetContents> m_svgStyleSheet;
+ Member<StyleSheetContents> m_mathmlStyleSheet;
+ Member<StyleSheetContents> m_mediaControlsStyleSheet;
+ Member<StyleSheetContents> m_fullscreenStyleSheet;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698