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