| Index: third_party/WebKit/Source/core/layout/LayoutTable.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.h b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| index b969dc693b9a6ef918f0059d4d247bb3ad0e7daa..2c0f062b54112ddf348da7fe7c09bd7e43c6ae79 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| @@ -30,6 +30,7 @@
|
| #include "core/layout/LayoutBlock.h"
|
| #include "core/style/CollapsedBorderValue.h"
|
| #include "wtf/Vector.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -474,7 +475,7 @@ private:
|
| //
|
| // As the algorithm is dependent on the style, this field is nullptr before
|
| // the first style is applied in styleDidChange().
|
| - OwnPtr<TableLayoutAlgorithm> m_tableLayout;
|
| + std::unique_ptr<TableLayoutAlgorithm> m_tableLayout;
|
|
|
| // A sorted list of all unique border values that we want to paint.
|
| //
|
|
|