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

Unified Diff: third_party/WebKit/Source/core/page/AutoscrollController.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/page/AutoscrollController.h
diff --git a/third_party/WebKit/Source/core/page/AutoscrollController.h b/third_party/WebKit/Source/core/page/AutoscrollController.h
index 1e1dc275ed45fd8d7363c50e7516660c8d7244d8..1f4f8a27e3ab805a0af1b93616bc44ab3ad08261 100644
--- a/third_party/WebKit/Source/core/page/AutoscrollController.h
+++ b/third_party/WebKit/Source/core/page/AutoscrollController.h
@@ -52,10 +52,9 @@ enum AutoscrollType {
};
// AutscrollController handels autoscroll and pan scroll for EventHandler.
-class CORE_EXPORT AutoscrollController final : public NoBaseWillBeGarbageCollected<AutoscrollController> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(AutoscrollController);
+class CORE_EXPORT AutoscrollController final : public GarbageCollected<AutoscrollController> {
public:
- static PassOwnPtrWillBeRawPtr<AutoscrollController> create(Page&);
+ static RawPtr<AutoscrollController> create(Page&);
DECLARE_TRACE();
static const int noPanScrollRadius = 15;
@@ -83,7 +82,7 @@ private:
void updatePanScrollState(FrameView*, const IntPoint& lastKnownMousePosition);
#endif
- RawPtrWillBeMember<Page> m_page;
+ Member<Page> m_page;
LayoutBox* m_autoscrollLayoutObject;
LayoutBox* m_pressedLayoutObject;
AutoscrollType m_autoscrollType;

Powered by Google App Engine
This is Rietveld 408576698