| Index: third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h | 
| diff --git a/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h b/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h | 
| index 392ecf6c0ff89c7a24438a4ccaf90a04a76d6b53..c2fcc12af1ef90a5bd9ed1f4a304d204ad8a1f48 100644 | 
| --- a/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h | 
| +++ b/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h | 
| @@ -14,12 +14,12 @@ namespace blink { | 
|  | 
| class CSSCustomPropertyDeclaration : public CSSValue { | 
| public: | 
| -    static RawPtr<CSSCustomPropertyDeclaration> create(const AtomicString& name, PassRefPtr<CSSVariableData> value) | 
| +    static CSSCustomPropertyDeclaration* create(const AtomicString& name, PassRefPtr<CSSVariableData> value) | 
| { | 
| return new CSSCustomPropertyDeclaration(name, value); | 
| } | 
|  | 
| -    static RawPtr<CSSCustomPropertyDeclaration> create(const AtomicString& name, CSSValueID id) | 
| +    static CSSCustomPropertyDeclaration* create(const AtomicString& name, CSSValueID id) | 
| { | 
| return new CSSCustomPropertyDeclaration(name, id); | 
| } | 
|  |