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

Unified Diff: Source/core/frame/RemoteFrame.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Switch LocalFrame::m_pluginElements rep to HashSet<HTMLPlugInElement*> Created 6 years, 2 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: Source/core/frame/RemoteFrame.h
diff --git a/Source/core/frame/RemoteFrame.h b/Source/core/frame/RemoteFrame.h
index 4395464c1d6a51c8727688de07f1cf5383b1a5c4..db12aaaeb808943d1f76415b2b509a8081d432e6 100644
--- a/Source/core/frame/RemoteFrame.h
+++ b/Source/core/frame/RemoteFrame.h
@@ -22,17 +22,19 @@ public:
virtual void navigate(Document& originDocument, const KURL&, bool lockBackForwardList) override;
virtual void detach() override;
- void setView(PassRefPtr<RemoteFrameView>);
+ void setView(PassRefPtrWillBeRawPtr<RemoteFrameView>);
void createView();
RemoteFrameView* view() const;
+ void trace(Visitor*) OVERRIDE;
+
private:
RemoteFrame(RemoteFrameClient*, FrameHost*, FrameOwner*);
RemoteFrameClient* remoteFrameClient() const;
- RefPtr<RemoteFrameView> m_view;
+ RefPtrWillBeMember<RemoteFrameView> m_view;
};
inline RemoteFrameView* RemoteFrame::view() const

Powered by Google App Engine
This is Rietveld 408576698