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

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

Issue 192473003: Move CSSRuleList to the garbage collected heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ager feedback 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
« no previous file with comments | « Source/core/css/CSSMediaRule.h ('k') | Source/core/css/CSSRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSPageRule.h
diff --git a/Source/core/css/CSSPageRule.h b/Source/core/css/CSSPageRule.h
index 4192e60acb041ff0bf6031b180b4c7bd15b45e8d..8585eece6d7f83b3988eaa842882eccb3f0a8440 100644
--- a/Source/core/css/CSSPageRule.h
+++ b/Source/core/css/CSSPageRule.h
@@ -36,7 +36,7 @@ class CSSPageRule FINAL : public CSSRule {
public:
static PassRefPtrWillBeRawPtr<CSSPageRule> create(StyleRulePage* rule, CSSStyleSheet* sheet)
{
- return adoptRefWillBeRefCountedGarbageCollected(new CSSPageRule(rule, sheet));
+ return adoptRefWillBeNoop(new CSSPageRule(rule, sheet));
}
virtual ~CSSPageRule();
« no previous file with comments | « Source/core/css/CSSMediaRule.h ('k') | Source/core/css/CSSRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698