| 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 76046f4458d40ee2af54b3e78345c67c9d5d5cad..b80f44201400f11923e1349c8b0701bb4bbd2dd2 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBox.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBox.h
|
| @@ -94,7 +94,7 @@ struct LayoutBoxRareData {
|
|
|
| SnapAreaSet& ensureSnapAreas() {
|
| if (!m_snapAreas)
|
| - m_snapAreas = wrapUnique(new SnapAreaSet);
|
| + m_snapAreas = WTF::wrapUnique(new SnapAreaSet);
|
|
|
| return *m_snapAreas;
|
| }
|
| @@ -1483,7 +1483,7 @@ class CORE_EXPORT LayoutBox : public LayoutBoxModelObject {
|
|
|
| LayoutBoxRareData& ensureRareData() {
|
| if (!m_rareData)
|
| - m_rareData = makeUnique<LayoutBoxRareData>();
|
| + m_rareData = WTF::makeUnique<LayoutBoxRareData>();
|
| return *m_rareData.get();
|
| }
|
|
|
|
|