| 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 e6b117b7aeb11a405d8001f36741454e25f18d5e..2556f104842e447436abfc8487c36493adc3b1ef 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;
|
|
|
| @@ -192,11 +192,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;
|
|
|