| Index: third_party/WebKit/Source/core/dom/ElementRareData.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ElementRareData.h b/third_party/WebKit/Source/core/dom/ElementRareData.h
|
| index f825a379d856b839c26af4dad2966eb094aaa902..665b59a57c2b98af2757cc2eb417ce6ddaf7980b 100644
|
| --- a/third_party/WebKit/Source/core/dom/ElementRareData.h
|
| +++ b/third_party/WebKit/Source/core/dom/ElementRareData.h
|
| @@ -102,7 +102,7 @@ public:
|
| void setComputedStyle(PassRefPtr<ComputedStyle> computedStyle)
|
| {
|
| if (layoutObject())
|
| - layoutObject()->setStyleInternal(computedStyle);
|
| + layoutObject()->setStyleInternal(std::move(computedStyle));
|
| else
|
| m_computedStyle = computedStyle;
|
| }
|
|
|