| Index: third_party/WebKit/Source/core/css/CSSPaintValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPaintValue.h b/third_party/WebKit/Source/core/css/CSSPaintValue.h
|
| index 6aa505cc8eb521179a71dd7739608ce7e9223ead..dcb253750826524f3fe19fefbaa05089b501e5b8 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPaintValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSPaintValue.h
|
| @@ -13,7 +13,7 @@ namespace blink {
|
|
|
| class CSSPaintValue : public CSSImageGeneratorValue {
|
| public:
|
| - static RawPtr<CSSPaintValue> create(RawPtr<CSSCustomIdentValue> name)
|
| + static CSSPaintValue* create(CSSCustomIdentValue* name)
|
| {
|
| return new CSSPaintValue(name);
|
| }
|
| @@ -37,7 +37,7 @@ public:
|
| DECLARE_TRACE_AFTER_DISPATCH();
|
|
|
| private:
|
| - explicit CSSPaintValue(RawPtr<CSSCustomIdentValue> name);
|
| + explicit CSSPaintValue(CSSCustomIdentValue* name);
|
|
|
| Member<CSSCustomIdentValue> m_name;
|
| };
|
|
|