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

Unified Diff: Source/core/css/CSSFontFaceRule.h

Issue 177423010: Oilpan: Remove Persistent handles from heap allocated CSSRule objects and fix finalization of CSSKe… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Keep the size assertion turned on. Created 6 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: Source/core/css/CSSFontFaceRule.h
diff --git a/Source/core/css/CSSFontFaceRule.h b/Source/core/css/CSSFontFaceRule.h
index 79df9649533c6987ed0e163f861062a388243f2e..dc0502e71aaa66d740d9b050d7dfdd75fff92723 100644
--- a/Source/core/css/CSSFontFaceRule.h
+++ b/Source/core/css/CSSFontFaceRule.h
@@ -48,12 +48,12 @@ public:
StyleRuleFontFace* styleRule() const { return m_fontFaceRule.get(); }
- virtual void trace(Visitor* visitor) OVERRIDE { CSSRule::trace(visitor); }
+ virtual void trace(Visitor*) OVERRIDE;
private:
CSSFontFaceRule(StyleRuleFontFace*, CSSStyleSheet* parent);
- RefPtrWillBePersistent<StyleRuleFontFace> m_fontFaceRule;
+ RefPtrWillBeMember<StyleRuleFontFace> m_fontFaceRule;
mutable RefPtr<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
};

Powered by Google App Engine
This is Rietveld 408576698