| Index: third_party/WebKit/Source/platform/scroll/Scrollbar.h
|
| diff --git a/third_party/WebKit/Source/platform/scroll/Scrollbar.h b/third_party/WebKit/Source/platform/scroll/Scrollbar.h
|
| index 13964336683d6855229e94a43d6488b1b4878a01..d36e5478be7dfa67e9370b9f63d91800b0ab413b 100644
|
| --- a/third_party/WebKit/Source/platform/scroll/Scrollbar.h
|
| +++ b/third_party/WebKit/Source/platform/scroll/Scrollbar.h
|
| @@ -48,10 +48,10 @@ class ScrollbarTheme;
|
|
|
| class PLATFORM_EXPORT Scrollbar : public Widget, public ScrollbarThemeClient {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<Scrollbar> create(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, HostWindow*);
|
| + static RawPtr<Scrollbar> create(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, HostWindow*);
|
|
|
| // Theme object ownership remains with the caller and it must outlive the scrollbar.
|
| - static PassRefPtrWillBeRawPtr<Scrollbar> createForTesting(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme*);
|
| + static RawPtr<Scrollbar> createForTesting(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme*);
|
|
|
| ~Scrollbar() override;
|
|
|
| @@ -190,11 +190,11 @@ protected:
|
| ScrollDirectionPhysical pressedPartScrollDirectionPhysical();
|
| ScrollGranularity pressedPartScrollGranularity();
|
|
|
| - RawPtrWillBeMember<ScrollableArea> m_scrollableArea;
|
| + Member<ScrollableArea> m_scrollableArea;
|
| ScrollbarOrientation m_orientation;
|
| ScrollbarControlSize m_controlSize;
|
| ScrollbarTheme& m_theme;
|
| - RawPtrWillBeMember<HostWindow> m_hostWindow;
|
| + Member<HostWindow> m_hostWindow;
|
|
|
| int m_visibleSize;
|
| int m_totalSize;
|
|
|