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

Unified Diff: Source/core/css/CSSFilterRule.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
« no previous file with comments | « no previous file | Source/core/css/CSSFilterRule.cpp » ('j') | Source/core/css/CSSFilterRule.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFilterRule.h
diff --git a/Source/core/css/CSSFilterRule.h b/Source/core/css/CSSFilterRule.h
index ef9b946025cf9f0080b72f9324374d29c0178373..823b233776816e1defca1d63c761cc9113ad5629 100644
--- a/Source/core/css/CSSFilterRule.h
+++ b/Source/core/css/CSSFilterRule.h
@@ -54,12 +54,12 @@ public:
CSSStyleDeclaration* style() const;
- virtual void trace(Visitor* visitor) OVERRIDE { CSSRule::trace(visitor); }
+ virtual void trace(Visitor*) OVERRIDE;
private:
CSSFilterRule(StyleRuleFilter*, CSSStyleSheet* parent);
- RefPtrWillBePersistent<StyleRuleFilter> m_filterRule;
+ RefPtrWillBeMember<StyleRuleFilter> m_filterRule;
mutable RefPtr<StyleRuleCSSStyleDeclaration> m_propertiesCSSOMWrapper;
};
« no previous file with comments | « no previous file | Source/core/css/CSSFilterRule.cpp » ('j') | Source/core/css/CSSFilterRule.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698