| 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;
|
|
|