| Index: third_party/WebKit/Source/core/layout/LayoutBox.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.h b/third_party/WebKit/Source/core/layout/LayoutBox.h
|
| index 4179e73ef9b7628ce45cab92db5aa0bf771c6723..85408fbb718d6f536254e04a4485dad00773b3ca 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBox.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBox.h
|
| @@ -1481,7 +1481,7 @@ class CORE_EXPORT LayoutBox : public LayoutBoxModelObject {
|
|
|
| LayoutBoxRareData& ensureRareData() {
|
| if (!m_rareData)
|
| - m_rareData = wrapUnique(new LayoutBoxRareData());
|
| + m_rareData = makeUnique<LayoutBoxRareData>();
|
| return *m_rareData.get();
|
| }
|
|
|
|
|