| Index: third_party/WebKit/Source/core/layout/LayoutView.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutView.h b/third_party/WebKit/Source/core/layout/LayoutView.h
|
| index 0441c819b882d8cb9a9747634e2098a4ccd319b7..6a123a24aabae8cfcae288b23a3e79b2a32f70f3 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutView.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutView.h
|
| @@ -32,7 +32,7 @@
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| #include "platform/heap/Handle.h"
|
| #include "platform/scroll/ScrollableArea.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -262,8 +262,8 @@ private:
|
| // See the class comment for more details.
|
| LayoutState* m_layoutState;
|
|
|
| - OwnPtr<ViewFragmentationContext> m_fragmentationContext;
|
| - OwnPtr<PaintLayerCompositor> m_compositor;
|
| + std::unique_ptr<ViewFragmentationContext> m_fragmentationContext;
|
| + std::unique_ptr<PaintLayerCompositor> m_compositor;
|
| RefPtr<IntervalArena> m_intervalArena;
|
|
|
| LayoutQuote* m_layoutQuoteHead;
|
|
|