| Index: third_party/WebKit/Source/core/editing/SelectionController.h
|
| diff --git a/third_party/WebKit/Source/core/editing/SelectionController.h b/third_party/WebKit/Source/core/editing/SelectionController.h
|
| index 8d02d2f4233c2bb8819a4229d6ccbafea444ac3a..80af8d938f87d5d57791bf67bd248ee460094605 100644
|
| --- a/third_party/WebKit/Source/core/editing/SelectionController.h
|
| +++ b/third_party/WebKit/Source/core/editing/SelectionController.h
|
| @@ -39,11 +39,10 @@ class FrameSelection;
|
| class HitTestResult;
|
| class LocalFrame;
|
|
|
| -class SelectionController final : public NoBaseWillBeGarbageCollected<SelectionController> {
|
| +class SelectionController final : public GarbageCollected<SelectionController> {
|
| WTF_MAKE_NONCOPYABLE(SelectionController);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(SelectionController);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<SelectionController> create(LocalFrame&);
|
| + static RawPtr<SelectionController> create(LocalFrame&);
|
| DECLARE_TRACE();
|
|
|
| void handleMousePressEvent(const MouseEventWithHitTestResults&);
|
| @@ -106,7 +105,7 @@ private:
|
|
|
| FrameSelection& selection() const;
|
|
|
| - RawPtrWillBeMember<LocalFrame> const m_frame;
|
| + Member<LocalFrame> const m_frame;
|
| bool m_mouseDownMayStartSelect;
|
| bool m_mouseDownWasSingleClickInSelection;
|
| bool m_mouseDownAllowsMultiClick;
|
|
|