| 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;
 | 
| 
 |