| Index: third_party/WebKit/Source/core/style/StyleVariableData.h
|
| diff --git a/third_party/WebKit/Source/core/style/StyleVariableData.h b/third_party/WebKit/Source/core/style/StyleVariableData.h
|
| index 4f9881fcdfb5912c2cf58af6943a64179d90be0e..7ae52c030ad9643431294a9fb1b69afa274004b4 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleVariableData.h
|
| +++ b/third_party/WebKit/Source/core/style/StyleVariableData.h
|
| @@ -23,7 +23,7 @@ public:
|
| bool operator==(const StyleVariableData& other) const;
|
| bool operator!=(const StyleVariableData& other) const { return !(*this == other); }
|
|
|
| - void setVariable(const AtomicString& name, PassRefPtr<CSSVariableData> value) { m_data.set(name, value); }
|
| + void setVariable(const AtomicString& name, PassRefPtr<CSSVariableData> value) { m_data.set(name, std::move(value)); }
|
| CSSVariableData* getVariable(const AtomicString& name) const;
|
| void removeVariable(const AtomicString&);
|
|
|
|
|