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

Unified Diff: third_party/WebKit/Source/core/css/CSSFontFaceRule.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/CSSFontFaceRule.h
diff --git a/third_party/WebKit/Source/core/css/CSSFontFaceRule.h b/third_party/WebKit/Source/core/css/CSSFontFaceRule.h
index aaa67c7b0eb562ec18011a6f9123c6b428c8caa0..4b8315b380ab16ab1f10e775fffb5c036f073562 100644
--- a/third_party/WebKit/Source/core/css/CSSFontFaceRule.h
+++ b/third_party/WebKit/Source/core/css/CSSFontFaceRule.h
@@ -34,9 +34,9 @@ class StyleRuleCSSStyleDeclaration;
class CSSFontFaceRule final : public CSSRule {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<CSSFontFaceRule> create(StyleRuleFontFace* rule, CSSStyleSheet* sheet)
+ static RawPtr<CSSFontFaceRule> create(StyleRuleFontFace* rule, CSSStyleSheet* sheet)
{
- return adoptRefWillBeNoop(new CSSFontFaceRule(rule, sheet));
+ return new CSSFontFaceRule(rule, sheet);
}
~CSSFontFaceRule() override;
@@ -55,8 +55,8 @@ private:
CSSRule::Type type() const override { return FONT_FACE_RULE; }
- RefPtrWillBeMember<StyleRuleFontFace> m_fontFaceRule;
- mutable RefPtrWillBeMember<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
+ Member<StyleRuleFontFace> m_fontFaceRule;
+ mutable Member<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
};
DEFINE_CSS_RULE_TYPE_CASTS(CSSFontFaceRule, FONT_FACE_RULE);
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSFontFace.cpp ('k') | third_party/WebKit/Source/core/css/CSSFontFaceSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698