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

Unified Diff: Source/core/css/CSSKeyframesRule.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/CSSKeyframesRule.h
diff --git a/Source/core/css/CSSKeyframesRule.h b/Source/core/css/CSSKeyframesRule.h
index b0092093e2c8750559430760c3145542491a3022..010e987c3d5089f72f06cce7d16a27cdb2694f10 100644
--- a/Source/core/css/CSSKeyframesRule.h
+++ b/Source/core/css/CSSKeyframesRule.h
@@ -106,7 +106,7 @@ public:
private:
CSSKeyframesRule(StyleRuleKeyframes*, CSSStyleSheet* parent);
- RefPtrWillBePersistent<StyleRuleKeyframes> m_keyframesRule;
+ RefPtrWillBeMember<StyleRuleKeyframes> m_keyframesRule;
mutable WillBeHeapVector<RefPtrWillBeMember<CSSKeyframeRule> > m_childRuleCSSOMWrappers;
mutable OwnPtr<CSSRuleList> m_ruleListCSSOMWrapper;
bool m_isPrefixed;

Powered by Google App Engine
This is Rietveld 408576698