| Index: third_party/WebKit/Source/core/style/ContentData.h
|
| diff --git a/third_party/WebKit/Source/core/style/ContentData.h b/third_party/WebKit/Source/core/style/ContentData.h
|
| index 2d8d007f10a901086e7e1fe8ff58a1177c5468e8..683319ddfc86a9d2786eaa7b5dc7cbdb3d0020f7 100644
|
| --- a/third_party/WebKit/Source/core/style/ContentData.h
|
| +++ b/third_party/WebKit/Source/core/style/ContentData.h
|
| @@ -154,7 +154,7 @@ private:
|
| ContentData* cloneInternal() const override
|
| {
|
| OwnPtr<CounterContent> counterData = adoptPtr(new CounterContent(*counter()));
|
| - return create(counterData.release());
|
| + return create(std::move(counterData));
|
| }
|
|
|
| bool equals(const ContentData& data) const override
|
|
|