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

Unified Diff: third_party/WebKit/Source/core/editing/SelectionController.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/SelectionController.h
diff --git a/third_party/WebKit/Source/core/editing/SelectionController.h b/third_party/WebKit/Source/core/editing/SelectionController.h
index ea9104f5dc70bc7c3a109468cb39f8a665aaea6b..e0b7788a866fbb01d02246e4a2e588f97c044129 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&);
@@ -81,7 +80,7 @@ private:
FrameSelection& selection() const;
- RawPtrWillBeMember<LocalFrame> const m_frame;
+ Member<LocalFrame> const m_frame;
bool m_mouseDownMayStartSelect;
bool m_mouseDownWasSingleClickInSelection;
bool m_mouseDownAllowsMultiClick;

Powered by Google App Engine
This is Rietveld 408576698