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

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, 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/WebFrameWidgetImpl.h
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.h b/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
index 09c85f3701d22815b9cdf82237019face6bae603..751f40456b8102baf21ffaf4ec5a0c5a608560c3 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:
@@ -199,12 +199,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;

Powered by Google App Engine
This is Rietveld 408576698