| Index: third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
|
| index ca336d0c9d507f54dd91b86ef856b9274e1f4555..9d987fcaaf9684c666c071208e0703ce1d8d8000 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
|
| @@ -11,7 +11,7 @@ namespace blink {
|
|
|
| StylePropertyMap::StyleValueVector ComputedStylePropertyMap::getAll(CSSPropertyID propertyID)
|
| {
|
| - CSSValue* cssValue = m_computedStyleDeclaration->getPropertyCSSValueInternal(propertyID);
|
| + const CSSValue* cssValue = m_computedStyleDeclaration->getPropertyCSSValueInternal(propertyID);
|
| if (!cssValue)
|
| return StylePropertyMap::StyleValueVector();
|
| return cssValueToStyleValueVector(propertyID, *cssValue);
|
|
|