| Index: third_party/WebKit/Source/core/css/CSSInitialValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSInitialValue.h b/third_party/WebKit/Source/core/css/CSSInitialValue.h
|
| index f86da526ac32af7e6f1b50bb111959ce24d316c8..20b1761fd9e9d7dcc2bc02325ac9263582c50b11 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSInitialValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSInitialValue.h
|
| @@ -28,11 +28,11 @@ namespace blink {
|
|
|
| class CSSInitialValue : public CSSValue {
|
| public:
|
| - static RawPtr<CSSInitialValue> createExplicit()
|
| + static CSSInitialValue* createExplicit()
|
| {
|
| return new CSSInitialValue(/* implicit */ false);
|
| }
|
| - static RawPtr<CSSInitialValue> createImplicit()
|
| + static CSSInitialValue* createImplicit()
|
| {
|
| return new CSSInitialValue(/* implicit */ true);
|
| }
|
|
|