| Index: third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
|
| diff --git a/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h b/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
|
| index 7893a187544bc2ebdd0b812061fd1cb964817cee..784fa99a45545557bfe32a60bc205c302a2e5522 100644
|
| --- a/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
|
| +++ b/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
|
| @@ -48,7 +48,7 @@ class WebCompositorAnimationTimeline;
|
|
|
| class PLATFORM_EXPORT ScrollAnimatorBase : public ScrollAnimatorCompositorCoordinator {
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<ScrollAnimatorBase> create(ScrollableArea*);
|
| + static RawPtr<ScrollAnimatorBase> create(ScrollableArea*);
|
|
|
| virtual ~ScrollAnimatorBase();
|
|
|
| @@ -120,7 +120,7 @@ protected:
|
|
|
| float clampScrollPosition(ScrollbarOrientation, float) const;
|
|
|
| - RawPtrWillBeMember<ScrollableArea> m_scrollableArea;
|
| + Member<ScrollableArea> m_scrollableArea;
|
| float m_currentPosX; // We avoid using a FloatPoint in order to reduce
|
| float m_currentPosY; // subclass code complexity.
|
| };
|
|
|