Index: Source/core/css/CSSValueList.h |
diff --git a/Source/core/css/CSSValueList.h b/Source/core/css/CSSValueList.h |
index 7e4d9ff600eb70a2aa03a8085860e0f19747e209..c841dfc50036e61c56ddc9b0a509b6bf6bdcc80f 100644 |
--- a/Source/core/css/CSSValueList.h |
+++ b/Source/core/css/CSSValueList.h |
@@ -53,8 +53,8 @@ |
const CSSValue* item(size_t index) const { return index < m_values.size() ? m_values[index].get() : 0; } |
CSSValue* itemWithoutBoundsCheck(size_t index) { return m_values[index].get(); } |
- void append(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.append(value); } |
- void prepend(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.prepend(value); } |
+ void append(PassRefPtr<CSSValue> value) { m_values.append(value); } |
+ void prepend(PassRefPtr<CSSValue> value) { m_values.prepend(value); } |
bool removeAll(CSSValue*); |
bool hasValue(CSSValue*) const; |
PassRefPtrWillBeRawPtr<CSSValueList> copy(); |
@@ -77,7 +77,7 @@ |
explicit CSSValueList(ValueListSeparator); |
explicit CSSValueList(CSSParserValueList*); |
- WillBeHeapVector<RefPtrWillBeMember<CSSValue>, 4> m_values; |
+ Vector<RefPtr<CSSValue>, 4> m_values; |
}; |
DEFINE_CSS_VALUE_TYPE_CASTS(CSSValueList, isValueList()); |