| Index: Source/core/css/PropertySetCSSStyleDeclaration.cpp
|
| diff --git a/Source/core/css/PropertySetCSSStyleDeclaration.cpp b/Source/core/css/PropertySetCSSStyleDeclaration.cpp
|
| index 8a0fa7d4680809d149497a0d934445c92b77d7d7..356824ffcf208b2e6f6e8ebd488a401eceedbc47 100644
|
| --- a/Source/core/css/PropertySetCSSStyleDeclaration.cpp
|
| +++ b/Source/core/css/PropertySetCSSStyleDeclaration.cpp
|
| @@ -312,7 +312,7 @@ bool PropertySetCSSStyleDeclaration::cssPropertyMatches(CSSPropertyID propertyID
|
| return m_propertySet->propertyMatches(propertyID, propertyValue);
|
| }
|
|
|
| -StyleRuleCSSStyleDeclaration::StyleRuleCSSStyleDeclaration(StylePropertySet* propertySet, CSSRule* parentRule)
|
| +StyleRuleCSSStyleDeclaration::StyleRuleCSSStyleDeclaration(MutableStylePropertySet* propertySet, CSSRule* parentRule)
|
| : PropertySetCSSStyleDeclaration(propertySet)
|
| , m_refCount(1)
|
| , m_parentRule(parentRule)
|
| @@ -358,7 +358,7 @@ CSSStyleSheet* StyleRuleCSSStyleDeclaration::parentStyleSheet() const
|
| return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
|
| }
|
|
|
| -void StyleRuleCSSStyleDeclaration::reattach(StylePropertySet* propertySet)
|
| +void StyleRuleCSSStyleDeclaration::reattach(MutableStylePropertySet* propertySet)
|
| {
|
| ASSERT(propertySet);
|
| m_propertySet->deref();
|
|
|