| Index: Source/core/css/CSSValueList.h
|
| diff --git a/Source/core/css/CSSValueList.h b/Source/core/css/CSSValueList.h
|
| index cf015a83d32ba6df5a00b2ca1cdb7db2f8148848..fb1bfc042b7d5462bc3846b3e56d9c6612e1d09a 100644
|
| --- a/Source/core/css/CSSValueList.h
|
| +++ b/Source/core/css/CSSValueList.h
|
| @@ -46,6 +46,7 @@ public:
|
| CSSValue* item(size_t index) { return m_values[index].get(); }
|
| const CSSValue* item(size_t index) const { return m_values[index].get(); }
|
| CSSValue* itemWithBoundsCheck(size_t index) { return index < m_values.size() ? m_values[index].get() : 0; }
|
| + const CSSValue* itemWithBoundsCheck(size_t index) const { return index < m_values.size() ? m_values[index].get() : 0; }
|
|
|
| void append(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.append(value); }
|
| void prepend(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.prepend(value); }
|
|
|