Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Unified Diff: third_party/WebKit/Source/core/editing/DragCaretController.h

Issue 1994883002: [Editing][CodeHealth] Extract new FrameCaret class from FrameSelection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 bcb0134cd4d2524ac2c5f319dfbb31a0c9f210b6..00d4f8450c292f10b169bef24d042e6bf9774426 100644
--- a/third_party/WebKit/Source/core/editing/DragCaretController.h
+++ b/third_party/WebKit/Source/core/editing/DragCaretController.h
@@ -28,8 +28,6 @@
#include "core/editing/CaretBase.h"
-#include <memory>
-
namespace blink {
class DragCaretController final : public GarbageCollectedFinalized<DragCaretController> {
@@ -56,7 +54,7 @@ private:
DragCaretController();
VisiblePosition m_position;
- const std::unique_ptr<CaretBase> m_caretBase;
+ const Member<CaretBase> m_caretBase;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/editing/CaretBase.cpp ('k') | third_party/WebKit/Source/core/editing/DragCaretController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698