| Index: third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
|
| diff --git a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
|
| index 89ead250c08ce26fd4aba477c633ca380cdc6ddf..81526d7aa89352a8215027d269610d15764cbee6 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
|
| +++ b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
|
| @@ -30,7 +30,7 @@ class StyleNonInheritedVariables {
|
|
|
| void setVariable(const AtomicString& name,
|
| PassRefPtr<CSSVariableData> value) {
|
| - m_data.set(name, value);
|
| + m_data.set(name, std::move(value));
|
| }
|
| CSSVariableData* getVariable(const AtomicString& name) const;
|
| void removeVariable(const AtomicString&);
|
|
|