| Index: third_party/WebKit/Source/core/animation/StringKeyframe.h
|
| diff --git a/third_party/WebKit/Source/core/animation/StringKeyframe.h b/third_party/WebKit/Source/core/animation/StringKeyframe.h
|
| index 51c343b0be5405dc3a8dc1d5d7504ce82df46369..6469a52aacf4bf1e51ac50ed5167e0161625c7c2 100644
|
| --- a/third_party/WebKit/Source/core/animation/StringKeyframe.h
|
| +++ b/third_party/WebKit/Source/core/animation/StringKeyframe.h
|
| @@ -23,18 +23,18 @@ public:
|
| }
|
|
|
| void setCSSPropertyValue(CSSPropertyID, const String& value, Element*, StyleSheetContents*);
|
| - void setCSSPropertyValue(CSSPropertyID, CSSValue*);
|
| + void setCSSPropertyValue(CSSPropertyID, const CSSValue*);
|
| void setPresentationAttributeValue(CSSPropertyID, const String& value, Element*, StyleSheetContents*);
|
| void setSVGAttributeValue(const QualifiedName&, const String& value);
|
|
|
| - CSSValue* cssPropertyValue(CSSPropertyID property) const
|
| + const CSSValue* cssPropertyValue(CSSPropertyID property) const
|
| {
|
| int index = m_cssPropertyMap->findPropertyIndex(property);
|
| RELEASE_ASSERT(index >= 0);
|
| return m_cssPropertyMap->propertyAt(static_cast<unsigned>(index)).value();
|
| }
|
|
|
| - CSSValue* presentationAttributeValue(CSSPropertyID property) const
|
| + const CSSValue* presentationAttributeValue(CSSPropertyID property) const
|
| {
|
| int index = m_presentationAttributeMap->findPropertyIndex(property);
|
| RELEASE_ASSERT(index >= 0);
|
|
|