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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 b1fa615e9714323474ef86d78c8d34d1b6811716..00c61a9e509dcf9c137a906a7fa7a8e5f98fe74f 100644
--- a/third_party/WebKit/Source/core/editing/DragCaretController.h
+++ b/third_party/WebKit/Source/core/editing/DragCaretController.h
@@ -32,11 +32,10 @@ namespace blink {
class CullRect;
-class DragCaretController final : public NoBaseWillBeGarbageCollectedFinalized<DragCaretController>, private CaretBase {
+class DragCaretController final : public GarbageCollectedFinalized<DragCaretController>, private CaretBase {
WTF_MAKE_NONCOPYABLE(DragCaretController);
- USING_FAST_MALLOC_WILL_BE_REMOVED(DragCaretController);
public:
- static PassOwnPtrWillBeRawPtr<DragCaretController> create();
+ static RawPtr<DragCaretController> create();
LayoutBlock* caretLayoutObject() const;
void paintDragCaret(LocalFrame*, GraphicsContext&, const LayoutPoint&) const;

Powered by Google App Engine
This is Rietveld 408576698