| Index: third_party/WebKit/Source/core/layout/line/InlineFlowBox.h
|
| diff --git a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.h b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.h
|
| index d1dd6e3ee4e840708deb5f04cb2e3b7278bd8b72..2b550560cf566f473de040907b1d2e93a8e175aa 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.h
|
| +++ b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.h
|
| @@ -25,6 +25,7 @@
|
| #include "core/layout/api/SelectionState.h"
|
| #include "core/layout/line/InlineBox.h"
|
| #include "core/style/ShadowData.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -310,7 +311,7 @@ private:
|
| void setOverflowFromLogicalRects(const LayoutRect& logicalLayoutOverflow, const LayoutRect& logicalVisualOverflow, LayoutUnit lineTop, LayoutUnit lineBottom);
|
|
|
| protected:
|
| - OwnPtr<SimpleOverflowModel> m_overflow;
|
| + std::unique_ptr<SimpleOverflowModel> m_overflow;
|
|
|
| bool isInlineFlowBox() const final { return true; }
|
|
|
|
|