| Index: third_party/WebKit/Source/core/css/CSSCounterValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSCounterValue.h b/third_party/WebKit/Source/core/css/CSSCounterValue.h
|
| index fb9c449276b0ed219960a459c15716d0fddaf771..0e4217b2d0af5d63f0a69c6a26283b16accd9336 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCounterValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSCounterValue.h
|
| @@ -30,7 +30,7 @@ namespace blink {
|
|
|
| class CSSCounterValue : public CSSValue {
|
| public:
|
| - static RawPtr<CSSCounterValue> create(RawPtr<CSSCustomIdentValue> identifier, RawPtr<CSSPrimitiveValue> listStyle, RawPtr<CSSCustomIdentValue> separator)
|
| + static CSSCounterValue* create(CSSCustomIdentValue* identifier, CSSPrimitiveValue* listStyle, CSSCustomIdentValue* separator)
|
| {
|
| return new CSSCounterValue(identifier, listStyle, separator);
|
| }
|
| @@ -51,7 +51,7 @@ public:
|
| DECLARE_TRACE_AFTER_DISPATCH();
|
|
|
| private:
|
| - CSSCounterValue(RawPtr<CSSCustomIdentValue> identifier, RawPtr<CSSPrimitiveValue> listStyle, RawPtr<CSSCustomIdentValue> separator)
|
| + CSSCounterValue(CSSCustomIdentValue* identifier, CSSPrimitiveValue* listStyle, CSSCustomIdentValue* separator)
|
| : CSSValue(CounterClass)
|
| , m_identifier(identifier)
|
| , m_listStyle(listStyle)
|
|
|