| Index: third_party/WebKit/Source/web/PopupMenuImpl.h
|
| diff --git a/third_party/WebKit/Source/web/PopupMenuImpl.h b/third_party/WebKit/Source/web/PopupMenuImpl.h
|
| index 2d6366f66f6f61a468dd160b81ab450a72685942..fc655f242f9ea8afd98516b563c72484279e5117 100644
|
| --- a/third_party/WebKit/Source/web/PopupMenuImpl.h
|
| +++ b/third_party/WebKit/Source/web/PopupMenuImpl.h
|
| @@ -20,7 +20,7 @@ class HTMLSelectElement;
|
|
|
| class PopupMenuImpl final : public PopupMenu, public PagePopupClient {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<PopupMenuImpl> create(ChromeClientImpl*, HTMLSelectElement&);
|
| + static RawPtr<PopupMenuImpl> create(ChromeClientImpl*, HTMLSelectElement&);
|
| ~PopupMenuImpl() override;
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -53,8 +53,8 @@ private:
|
| Locale& locale() override;
|
| void didClosePopup() override;
|
|
|
| - RawPtrWillBeMember<ChromeClientImpl> m_chromeClient;
|
| - RawPtrWillBeMember<HTMLSelectElement> m_ownerElement;
|
| + Member<ChromeClientImpl> m_chromeClient;
|
| + Member<HTMLSelectElement> m_ownerElement;
|
| PagePopup* m_popup;
|
| bool m_needsUpdate;
|
| };
|
|
|