| Index: Source/core/css/WebKitCSSKeyframeRule.cpp
|
| diff --git a/Source/core/css/WebKitCSSKeyframeRule.cpp b/Source/core/css/WebKitCSSKeyframeRule.cpp
|
| index c0b6f7ca1668fc1017f2de7ae2a076164b9e27c6..289caf64c78d7ece14ffd8dfa286e515e627e1e3 100644
|
| --- a/Source/core/css/WebKitCSSKeyframeRule.cpp
|
| +++ b/Source/core/css/WebKitCSSKeyframeRule.cpp
|
| @@ -41,11 +41,11 @@ StyleKeyframe::~StyleKeyframe()
|
| {
|
| }
|
|
|
| -StylePropertySet* StyleKeyframe::mutableProperties()
|
| +MutableStylePropertySet* StyleKeyframe::mutableProperties()
|
| {
|
| if (!m_properties->isMutable())
|
| m_properties = m_properties->mutableCopy();
|
| - return m_properties.get();
|
| + return static_cast<MutableStylePropertySet*>(m_properties.get());
|
| }
|
|
|
| void StyleKeyframe::setProperties(PassRefPtr<StylePropertySet> properties)
|
|
|