| Index: sky/engine/core/css/CSSRuleList.cpp
|
| diff --git a/sky/engine/core/css/CSSRuleList.cpp b/sky/engine/core/css/CSSRuleList.cpp
|
| index 7f3a7f2a4bc0bbc953b5f20db33e0f4108cd8121..c670ed302248cfdb6d871fab74cf358ca1b162a8 100644
|
| --- a/sky/engine/core/css/CSSRuleList.cpp
|
| +++ b/sky/engine/core/css/CSSRuleList.cpp
|
| @@ -35,9 +35,7 @@ CSSRuleList::~CSSRuleList()
|
| }
|
|
|
| StaticCSSRuleList::StaticCSSRuleList()
|
| -#if !ENABLE(OILPAN)
|
| : m_refCount(1)
|
| -#endif
|
| {
|
| }
|
|
|
| @@ -45,20 +43,11 @@ StaticCSSRuleList::~StaticCSSRuleList()
|
| {
|
| }
|
|
|
| -#if !ENABLE(OILPAN)
|
| void StaticCSSRuleList::deref()
|
| {
|
| ASSERT(m_refCount);
|
| if (!--m_refCount)
|
| delete this;
|
| }
|
| -#endif
|
| -
|
| -void StaticCSSRuleList::trace(Visitor* visitor)
|
| -{
|
| - visitor->trace(m_rules);
|
| - CSSRuleList::trace(visitor);
|
| -}
|
| -
|
|
|
| } // namespace blink
|
|
|