| Index: third_party/WebKit/Source/core/editing/Editor.h
|
| diff --git a/third_party/WebKit/Source/core/editing/Editor.h b/third_party/WebKit/Source/core/editing/Editor.h
|
| index 4262211b55107b0dbc84e5b20a776f8a3a5ec48f..e2bd766a26d295c6f3010f3a02cfe89e87d24b9d 100644
|
| --- a/third_party/WebKit/Source/core/editing/Editor.h
|
| +++ b/third_party/WebKit/Source/core/editing/Editor.h
|
| @@ -39,6 +39,7 @@
|
| #include "core/editing/markers/DocumentMarker.h"
|
| #include "platform/PasteMode.h"
|
| #include "platform/heap/Handle.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -255,7 +256,7 @@ private:
|
| int m_preventRevealSelection;
|
| bool m_shouldStartNewKillRingSequence;
|
| bool m_shouldStyleWithCSS;
|
| - const OwnPtr<KillRing> m_killRing;
|
| + const std::unique_ptr<KillRing> m_killRing;
|
| VisibleSelection m_mark;
|
| bool m_areMarkedTextMatchesHighlighted;
|
| EditorParagraphSeparator m_defaultParagraphSeparator;
|
|
|