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

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

Issue 192473003: Move CSSRuleList to the garbage collected heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove persistent from m_authorStyleSheets in StyleEngine.h Created 6 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: Source/core/css/CSSRule.h
diff --git a/Source/core/css/CSSRule.h b/Source/core/css/CSSRule.h
index 519ed90a86cf8a39fd58a026e6fed88daf164be2..bde058b07ab27e6a685108b0c6e80255de79ce6e 100644
--- a/Source/core/css/CSSRule.h
+++ b/Source/core/css/CSSRule.h
@@ -37,7 +37,7 @@ class StyleRuleBase;
// FIXME: oilpan: CSSRuleList redirects increments and decrements of its
Mads Ager (chromium) 2014/03/10 12:32:56 Remove deprecated comment.
Erik Corry 2014/03/12 12:31:27 Done.
// reference counts to its CSSRule. That means this has to be
// RefCountedGarbageCollected instead of just GarbageCollected for now.
-class CSSRule : public RefCountedWillBeRefCountedGarbageCollected<CSSRule> {
+class CSSRule : public RefCountedWillBeGarbageCollectedFinalized<CSSRule> {
public:
virtual ~CSSRule() { }

Powered by Google App Engine
This is Rietveld 408576698