| Index: third_party/WebKit/Source/core/editing/DragCaretController.h
|
| diff --git a/third_party/WebKit/Source/core/editing/DragCaretController.h b/third_party/WebKit/Source/core/editing/DragCaretController.h
|
| index a001451c48f485763fe93e34215c70af738293b5..d02af83a80f95cfe58ea652a84b39cef306fc530 100644
|
| --- a/third_party/WebKit/Source/core/editing/DragCaretController.h
|
| +++ b/third_party/WebKit/Source/core/editing/DragCaretController.h
|
| @@ -29,6 +29,7 @@
|
|
|
| #include "core/dom/SynchronousMutationObserver.h"
|
| #include "core/editing/CaretBase.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -66,7 +67,7 @@ class DragCaretController final
|
| // caret rect in coords local to the layoutObject responsible for painting the
|
| // caret
|
| LayoutRect m_caretLocalRect;
|
| - const Member<CaretBase> m_caretBase;
|
| + const std::unique_ptr<CaretBase> m_caretBase;
|
| };
|
|
|
| } // namespace blink
|
|
|