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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.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/WebFrameWidgetImpl.h
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.h b/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
index 371f353fb8361be277e839bcfabaa949f8228695..6ee4035c2741594b01c9e5878ee854fdd3a7ffa2 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
@@ -59,9 +59,9 @@ class WebMouseEvent;
class WebMouseWheelEvent;
class WebFrameWidgetImpl;
-using WebFrameWidgetsSet = WillBePersistentHeapHashSet<RawPtrWillBeWeakMember<WebFrameWidgetImpl>>;
+using WebFrameWidgetsSet = PersistentHeapHashSet<WeakMember<WebFrameWidgetImpl>>;
-class WebFrameWidgetImpl final : public RefCountedWillBeGarbageCollectedFinalized<WebFrameWidgetImpl>
+class WebFrameWidgetImpl final : public GarbageCollectedFinalized<WebFrameWidgetImpl>
, public WebFrameWidget
, public PageWidgetEventHandler {
public:
@@ -200,12 +200,12 @@ private:
// WebFrameWidget is associated with a subtree of the frame tree, corresponding to a maximal
// connected tree of LocalFrames. This member points to the root of that subtree.
- RawPtrWillBeMember<WebLocalFrameImpl> m_localRoot;
+ Member<WebLocalFrameImpl> m_localRoot;
WebSize m_size;
// If set, the (plugin) node which has mouse capture.
- RefPtrWillBeMember<Node> m_mouseCaptureNode;
+ Member<Node> m_mouseCaptureNode;
RefPtr<UserGestureToken> m_mouseCaptureGestureToken;
WebLayerTreeView* m_layerTreeView;
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameSerializerImpl.h ('k') | third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698