| Index: third_party/WebKit/Source/core/css/CSSVariableReferenceValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSVariableReferenceValue.h b/third_party/WebKit/Source/core/css/CSSVariableReferenceValue.h
|
| index b3506d2076bc0127ac88dd2f7428d460acb4d736..900e16583d958b613e640303f692f34ee6340fd0 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSVariableReferenceValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSVariableReferenceValue.h
|
| @@ -15,7 +15,7 @@ class CSSVariableReferenceValue : public CSSValue {
|
| public:
|
| static CSSVariableReferenceValue* create(PassRefPtr<CSSVariableData> data)
|
| {
|
| - return new CSSVariableReferenceValue(data);
|
| + return new CSSVariableReferenceValue(std::move(data));
|
| }
|
|
|
| CSSVariableData* variableDataValue() const
|
|
|