| Index: third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCell.h b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| index 023f92db7a648ca03cbaf4400d01f791f0477fdf..dba8984719783fabf6ad0eaa1d179d88565b762b 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| @@ -30,6 +30,7 @@
|
| #include "core/layout/LayoutTableRow.h"
|
| #include "core/layout/LayoutTableSection.h"
|
| #include "platform/LengthFunctions.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -366,7 +367,7 @@ private:
|
| int m_intrinsicPaddingBefore;
|
| int m_intrinsicPaddingAfter;
|
|
|
| - OwnPtr<CollapsedBorderValues> m_collapsedBorderValues;
|
| + std::unique_ptr<CollapsedBorderValues> m_collapsedBorderValues;
|
| };
|
|
|
| DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableCell, isTableCell());
|
|
|