| Index: third_party/WebKit/Source/core/css/CSSValueList.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValueList.h b/third_party/WebKit/Source/core/css/CSSValueList.h
|
| index cb1e32b81e7a837591c8f9a367624fa2a7671a1b..375986f619e73808648f47db91572b360a7be752 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValueList.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSValueList.h
|
| @@ -61,7 +61,6 @@ public:
|
| const CSSValue* itemWithBoundsCheck(size_t index) const { return index < m_values.size() ? m_values[index].get() : nullptr; }
|
|
|
| void append(CSSValue* value) { m_values.append(value); }
|
| - void prepend(CSSValue* value) { m_values.prepend(value); }
|
| bool removeAll(const CSSValue&);
|
| bool hasValue(const CSSValue&) const;
|
| CSSValueList* copy();
|
|
|