Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: third_party/WebKit/Source/web/PopupMenuImpl.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};
« no previous file with comments | « third_party/WebKit/Source/web/NotificationPermissionClientImpl.cpp ('k') | third_party/WebKit/Source/web/PopupMenuImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698