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

Unified Diff: Source/core/css/CSSMediaRule.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/CSSKeyframesRule.cpp ('k') | Source/core/css/CSSPageRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSMediaRule.h
diff --git a/Source/core/css/CSSMediaRule.h b/Source/core/css/CSSMediaRule.h
index 5d56af752aee23639cd50a1bbf49c46623107fe0..fb6895816d6940670004341cef0b14a42053c8b6 100644
--- a/Source/core/css/CSSMediaRule.h
+++ b/Source/core/css/CSSMediaRule.h
@@ -34,7 +34,7 @@ class CSSMediaRule FINAL : public CSSGroupingRule {
public:
static PassRefPtrWillBeRawPtr<CSSMediaRule> create(StyleRuleMedia* rule, CSSStyleSheet* sheet)
{
- return adoptRefWillBeRefCountedGarbageCollected(new CSSMediaRule(rule, sheet));
+ return adoptRefWillBeNoop(new CSSMediaRule(rule, sheet));
}
virtual ~CSSMediaRule();
« no previous file with comments | « Source/core/css/CSSKeyframesRule.cpp ('k') | Source/core/css/CSSPageRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698