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

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: Rebase upto and resolve r182737 conflict. Created 6 years, 3 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 4ce70622177c5d0d0566c97c48ee6aa1258a8e03..7baad083a64cac47966adb11ea7a8f7d6da17101 100644
--- a/Source/core/frame/RemoteFrame.h
+++ b/Source/core/frame/RemoteFrame.h
@@ -20,15 +20,17 @@ public:
virtual void detach() OVERRIDE;
- void setView(PassRefPtr<RemoteFrameView>);
+ void setView(PassRefPtrWillBeRawPtr<RemoteFrameView>);
void createView();
RemoteFrameView* view() const;
+ void trace(Visitor*) OVERRIDE;
+
private:
RemoteFrame(FrameClient*, FrameHost*, FrameOwner*);
- RefPtr<RemoteFrameView> m_view;
+ RefPtrWillBeMember<RemoteFrameView> m_view;
};
inline RemoteFrameView* RemoteFrame::view() const

Powered by Google App Engine
This is Rietveld 408576698