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

Unified Diff: Source/core/css/CSSViewportRule.cpp

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
« Source/core/css/CSSKeyframesRule.cpp ('K') | « Source/core/css/CSSViewportRule.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSViewportRule.cpp
diff --git a/Source/core/css/CSSViewportRule.cpp b/Source/core/css/CSSViewportRule.cpp
index c658d50d1f11a52157ae5680a13ea079d6d5b22d..2565022631539d95e471cd172cb2ba2d75ff7c19 100644
--- a/Source/core/css/CSSViewportRule.cpp
+++ b/Source/core/css/CSSViewportRule.cpp
@@ -81,4 +81,10 @@ void CSSViewportRule::reattach(StyleRuleBase* rule)
m_propertiesCSSOMWrapper->reattach(m_viewportRule->mutableProperties());
}
+void CSSViewportRule::trace(Visitor* visitor)
+{
+ visitor->trace(m_viewportRule);
+ CSSRule::trace(visitor);
+}
+
} // namespace WebCore
« Source/core/css/CSSKeyframesRule.cpp ('K') | « Source/core/css/CSSViewportRule.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698