| 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 1119dc2b605c70fc87fe2bcc7cd5b66df20b4111..47f8c24b741d42e6369ee7c7b34aafadd2f63de7 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValueList.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSValueList.h
|
| @@ -60,8 +60,8 @@ public:
|
|
|
| void append(CSSValue* value) { m_values.append(value); }
|
| void prepend(CSSValue* value) { m_values.prepend(value); }
|
| - bool removeAll(CSSValue*);
|
| - bool hasValue(CSSValue*) const;
|
| + bool removeAll(const CSSValue&);
|
| + bool hasValue(const CSSValue&) const;
|
| CSSValueList* copy();
|
|
|
| String customCSSText() const;
|
|
|