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

Unified Diff: third_party/WebKit/Source/web/ExternalPopupMenu.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, 10 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/ExternalPopupMenu.h
diff --git a/third_party/WebKit/Source/web/ExternalPopupMenu.h b/third_party/WebKit/Source/web/ExternalPopupMenu.h
index e0d02c42d0e7c6fa2b9b17deff578263d7ef89a7..fdeecc2231776114dd7b38314caccd12ba51e448 100644
--- a/third_party/WebKit/Source/web/ExternalPopupMenu.h
+++ b/third_party/WebKit/Source/web/ExternalPopupMenu.h
@@ -80,8 +80,8 @@ private:
void dispatchEvent(Timer<ExternalPopupMenu>*);
void update();
- RawPtrWillBeMember<HTMLSelectElement> m_ownerElement;
- RefPtrWillBeMember<LocalFrame> m_localFrame;
+ Member<HTMLSelectElement> m_ownerElement;
+ Member<LocalFrame> m_localFrame;
WebViewImpl& m_webView;
OwnPtr<WebMouseEvent> m_syntheticEvent;
Timer<ExternalPopupMenu> m_dispatchEventTimer;

Powered by Google App Engine
This is Rietveld 408576698