Chromium Code Reviews| Index: Source/core/frame/RemoteFrameView.h |
| diff --git a/Source/core/frame/RemoteFrameView.h b/Source/core/frame/RemoteFrameView.h |
| index 614e3a5e8015cc038f8468645442366eb3eff3e5..ff27d7c270e80c9cdb8d88ade439f3e6a2cb37ab 100644 |
| --- a/Source/core/frame/RemoteFrameView.h |
| +++ b/Source/core/frame/RemoteFrameView.h |
| @@ -7,6 +7,7 @@ |
| #include "platform/Widget.h" |
| #include "platform/geometry/IntRect.h" |
| +#include "platform/heap/Handle.h" |
| namespace blink { |
| @@ -32,7 +33,7 @@ public: |
| private: |
| explicit RemoteFrameView(RemoteFrame*); |
| - RefPtr<RemoteFrame> m_remoteFrame; |
| + RefPtrWillBePersistent<RemoteFrame> m_remoteFrame; |
|
haraken
2014/09/11 14:47:25
Add a comment about how the cycle between RemoteFr
sof
2014/09/12 14:47:40
Done, cross-referencing the FrameView::m_frame com
|
| }; |
| DEFINE_TYPE_CASTS(RemoteFrameView, Widget, widget, widget->isRemoteFrameView(), widget.isRemoteFrameView()); |