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

Unified Diff: sky/engine/core/css/PropertySetCSSStyleDeclaration.cpp

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « sky/engine/core/css/PropertySetCSSStyleDeclaration.h ('k') | sky/engine/core/css/RGBColor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/PropertySetCSSStyleDeclaration.cpp
diff --git a/sky/engine/core/css/PropertySetCSSStyleDeclaration.cpp b/sky/engine/core/css/PropertySetCSSStyleDeclaration.cpp
index 3ade73b881a2d642341a0dcaafd1b42bd207740f..f51a28627c545153cda44401627e5aa5696352fa 100644
--- a/sky/engine/core/css/PropertySetCSSStyleDeclaration.cpp
+++ b/sky/engine/core/css/PropertySetCSSStyleDeclaration.cpp
@@ -120,12 +120,6 @@ void PropertySetCSSStyleDeclaration::deref()
}
#endif
-void PropertySetCSSStyleDeclaration::trace(Visitor* visitor)
-{
- visitor->trace(m_propertySet);
- AbstractPropertySetCSSStyleDeclaration::trace(visitor);
-}
-
unsigned AbstractPropertySetCSSStyleDeclaration::length() const
{
return propertySet().propertyCount();
@@ -286,14 +280,6 @@ bool AbstractPropertySetCSSStyleDeclaration::cssPropertyMatches(CSSPropertyID pr
return propertySet().propertyMatches(propertyID, propertyValue);
}
-void AbstractPropertySetCSSStyleDeclaration::trace(Visitor* visitor)
-{
-#if ENABLE(OILPAN)
- visitor->trace(m_cssomCSSValueClones);
-#endif
- CSSStyleDeclaration::trace(visitor);
-}
-
StyleRuleCSSStyleDeclaration::StyleRuleCSSStyleDeclaration(MutableStylePropertySet& propertySetArg, CSSRule* parentRule)
: PropertySetCSSStyleDeclaration(propertySetArg)
#if !ENABLE(OILPAN)
@@ -359,12 +345,6 @@ void StyleRuleCSSStyleDeclaration::reattach(MutableStylePropertySet& propertySet
#endif
}
-void StyleRuleCSSStyleDeclaration::trace(Visitor* visitor)
-{
- visitor->trace(m_parentRule);
- PropertySetCSSStyleDeclaration::trace(visitor);
-}
-
MutableStylePropertySet& InlineCSSStyleDeclaration::propertySet() const
{
return m_parentElement->ensureMutableInlineStyle();
@@ -403,10 +383,4 @@ void InlineCSSStyleDeclaration::deref()
}
#endif
-void InlineCSSStyleDeclaration::trace(Visitor* visitor)
-{
- visitor->trace(m_parentElement);
- AbstractPropertySetCSSStyleDeclaration::trace(visitor);
-}
-
} // namespace blink
« no previous file with comments | « sky/engine/core/css/PropertySetCSSStyleDeclaration.h ('k') | sky/engine/core/css/RGBColor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698